dir_libc_gccgo.go 321 B

123456789101112131415
  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.
  4. // +build !aix
  5. package os
  6. import "syscall"
  7. //extern closedir
  8. func libc_closedir(*syscall.DIR) int
  9. //extern fdopendir
  10. func libc_fdopendir(int32) *syscall.DIR