2011-10-08 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / libgo / syscalls / sysfile_stat_regfile.go
blobb3d486413759cf23b65a0de11457b8f85b328ca7
1 // sysfile_stat_regfile.go -- For systems which do not use the large file
2 // interface for *stat.
4 // Copyright 2011 The Go Authors. All rights reserved.
5 // Use of this source code is governed by a BSD-style
6 // license that can be found in the LICENSE file.
8 package syscall
10 func libc_stat(name *byte, buf *Stat_t) int __asm__ ("stat");
11 func libc_fstat(fd int, buf *Stat_t) int __asm__ ("fstat");
12 func libc_lstat(name *byte, buf *Stat_t) int __asm__ ("lstat");