2018-05-07 Edward Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / libgo / go / os / dir_libc64_gccgo.go
blob95d46634c17a802ea9c51132e2eee0b8dc9c0f93
1 // Copyright 2017 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // +build aix
7 package os
9 import "syscall"
11 //extern opendir64
12 func libc_opendir(*byte) *syscall.DIR
14 //extern closedir64
15 func libc_closedir(*syscall.DIR) int