diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-10-03 10:14:45 +0200 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-10-03 10:14:45 +0200 |
commit | c48fb0eeeeb5cff860ee8eace7b0e8cebb72c093 (patch) | |
tree | 7373cbb05bbd9bf0f38f292a854af64b4eea24b8 /system/include/libc/sys/stat.h | |
parent | c2a8a5b364e6b888c6563af371603eb5ce86c1b5 (diff) |
fix test_stat
Diffstat (limited to 'system/include/libc/sys/stat.h')
-rw-r--r-- | system/include/libc/sys/stat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/include/libc/sys/stat.h b/system/include/libc/sys/stat.h index f00caa66..fd955d66 100644 --- a/system/include/libc/sys/stat.h +++ b/system/include/libc/sys/stat.h @@ -150,7 +150,7 @@ int _EXFUN(mkfifo,( const char *__path, mode_t __mode )); int _EXFUN(stat,( const char *__path, struct stat *__sbuf )); mode_t _EXFUN(umask,( mode_t __mask )); -#if defined (__SPU__) || defined(__rtems__) || defined(__CYGWIN__) && !defined(__INSIDE_CYGWIN__) +#if defined(EMSCRIPTEN) || defined (__SPU__) || defined(__rtems__) || defined(__CYGWIN__) && !defined(__INSIDE_CYGWIN__) int _EXFUN(lstat,( const char *__path, struct stat *__buf )); int _EXFUN(mknod,( const char *__path, mode_t __mode, dev_t __dev )); #endif |