OSDN Git Service

b3d486413759cf23b65a0de11457b8f85b328ca7
[pf3gnuchains/gcc-fork.git] / libgo / syscalls / sysfile_stat_regfile.go
1 // sysfile_stat_regfile.go -- For systems which do not use the large file
2 // interface for *stat.
3
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.
7
8 package syscall
9
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");