diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-10-06 17:10:05 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-10-06 17:10:05 -0700 |
commit | a81dce1adf2789e4f00b00ace63cdc96dc148773 (patch) | |
tree | ea4fe6c5040e389e97a6702af2309634e3f84d90 /system | |
parent | 2dcc09490bfeb3d4e9e2c9a0710b749058a59385 (diff) |
fix unistd_pathconf
Diffstat (limited to 'system')
-rw-r--r-- | system/include/libc/sys/unistd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/system/include/libc/sys/unistd.h b/system/include/libc/sys/unistd.h index ac6eb05f..67462c63 100644 --- a/system/include/libc/sys/unistd.h +++ b/system/include/libc/sys/unistd.h @@ -440,6 +440,8 @@ int _EXFUN(unlinkat, (int, const char *, int)); /* Ask for full POSIX permission support including uid/gid settings. */ #define _PC_POSIX_SECURITY 91 #endif +/* XXX Emscripten */ +#define _PC_SOCK_MAXBUF 100 /* * confstr values per IEEE Std 1003.1, 2004 Edition |