diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-09 12:10:22 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-09 12:10:22 +0000 |
commit | 82e671d9ecdf1422780e56182e9c228071493a22 (patch) | |
tree | 4a4d694105dd25e97e49176f536de8e403df5876 /linux-user/syscall.c | |
parent | f1aa63203d53945faa708c821c9d4491e5cc8a27 (diff) |
Despite what the documentation says/implies, PTHREAD_STACK_MIN is often not
defined by pthread.h.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4709 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/syscall.c')
-rw-r--r-- | linux-user/syscall.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index d020228876..b6e9778a8f 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -27,6 +27,7 @@ #include <unistd.h> #include <fcntl.h> #include <time.h> +#include <limits.h> #include <sys/types.h> #include <sys/ipc.h> #include <sys/msg.h> |