2018-05-07 Edward Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / libgo / go / os / dir_libc_gccgo.go
blob1ee253c2a77da43ef8f5a3e352dc3f4538e488a1
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 opendir
12 func libc_opendir(*byte) *syscall.DIR
14 //extern closedir
15 func libc_closedir(*syscall.DIR) int