2011-02-21 04:17:20 +00:00
|
|
|
// dir_largefile.go -- For systems which use the large file interface for
|
|
|
|
// readdir_r.
|
|
|
|
|
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-02-01 21:57:36 +00:00
|
|
|
// +build aix hurd linux solaris,386 solaris,sparc
|
2016-08-06 00:36:33 +00:00
|
|
|
|
2011-02-21 04:17:20 +00:00
|
|
|
package os
|
|
|
|
|
|
|
|
import "syscall"
|
|
|
|
|
2020-12-23 09:57:37 -08:00
|
|
|
//extern readdir64
|
|
|
|
func libc_readdir(*syscall.DIR) *syscall.Dirent
|