diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-02-18 18:17:05 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-02-18 18:17:05 +0530 |
commit | ffaa74cf68a370e232279a9a9b0a02ade287cc99 (patch) | |
tree | b5e0d38ef27cac59fc62aaa66b40582c89fd060e /misc | |
parent | be179c8a36fc171acff0634ac50ad31269ad4742 (diff) | |
download | glibc-ffaa74cf68a370e232279a9a9b0a02ade287cc99.zip glibc-ffaa74cf68a370e232279a9a9b0a02ade287cc99.tar.gz glibc-ffaa74cf68a370e232279a9a9b0a02ade287cc99.tar.bz2 |
Fix build warnings in some test cases
Include stdlib.h to get declaration of exit(3)
Diffstat (limited to 'misc')
-rw-r--r-- | misc/tst-pselect.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/misc/tst-pselect.c b/misc/tst-pselect.c index 35d51d8..36bc46d 100644 --- a/misc/tst-pselect.c +++ b/misc/tst-pselect.c @@ -4,6 +4,7 @@ #include <unistd.h> #include <sys/select.h> #include <sys/wait.h> +#include <stdlib.h> static volatile int handler_called; |