aboutsummaryrefslogtreecommitdiff
path: root/system/include/libc/sys/stat.h
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-01-04 08:37:16 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-01-04 08:37:16 -0800
commit0086d64c19c523b949589a86398fda85481ddd4a (patch)
tree802a8a0e322741dbae3720ce48fc18bda00177b1 /system/include/libc/sys/stat.h
parent56610cf496a124108701181163492b8961db924d (diff)
misc header improvements for building llvm
Diffstat (limited to 'system/include/libc/sys/stat.h')
-rw-r--r--system/include/libc/sys/stat.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/system/include/libc/sys/stat.h b/system/include/libc/sys/stat.h
index fd955d66..b31dc079 100644
--- a/system/include/libc/sys/stat.h
+++ b/system/include/libc/sys/stat.h
@@ -145,13 +145,16 @@ struct stat
int _EXFUN(chmod,( const char *__path, mode_t __mode ));
int _EXFUN(fchmod,(int __fd, mode_t __mode));
int _EXFUN(fstat,( int __fd, struct stat *__sbuf ));
+int _EXFUN(fstat64,( int __fd, struct stat *__sbuf )); /* XXX Emscripten */
int _EXFUN(mkdir,( const char *_path, mode_t __mode ));
int _EXFUN(mkfifo,( const char *__path, mode_t __mode ));
int _EXFUN(stat,( const char *__path, struct stat *__sbuf ));
+int _EXFUN(stat64,( const char *__path, struct stat *__sbuf )); /* XXX Emscripten */
mode_t _EXFUN(umask,( mode_t __mask ));
#if defined(EMSCRIPTEN) || defined (__SPU__) || defined(__rtems__) || defined(__CYGWIN__) && !defined(__INSIDE_CYGWIN__)
int _EXFUN(lstat,( const char *__path, struct stat *__buf ));
+int _EXFUN(lstat64,( const char *__path, struct stat *__buf )); /* XXX Emscripten */
int _EXFUN(mknod,( const char *__path, mode_t __mode, dev_t __dev ));
#endif