2011-05-31 Gabriel Charette <gchare@google.com>
[official-gcc.git] / libgo / syscalls / sysfile_stat_largefile.go
blob1b785f70a6415c9969cf6992176a28d4ed0c0fe7
1 // sysfile_stat_largefile.go -- For systems which use the large file interface
2 // 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__ ("stat64");
11 func libc_fstat(fd int, buf *Stat_t) int __asm__ ("fstat64");
12 func libc_lstat(name *byte, buf *Stat_t) int __asm__ ("lstat64");