diff options
author | Roland McGrath <roland@gnu.org> | 2004-06-29 00:33:10 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2004-06-29 00:33:10 +0000 |
commit | e1be0bc5657984906bb6885623d348914e135223 (patch) | |
tree | 15395d7fa4a4bd574e8f46744a01b56609980d1d /inet | |
parent | 433006673a9b2ae73803965356db22cc7464e6b9 (diff) | |
download | glibc-e1be0bc5657984906bb6885623d348914e135223.tar.gz glibc-e1be0bc5657984906bb6885623d348914e135223.tar.xz glibc-e1be0bc5657984906bb6885623d348914e135223.zip |
* inet/bug-if1.c: Include <string.h>.
2004-06-19 Roland McGrath <roland@redhat.com> * sysdeps/posix/waitid.c (do_waitid) [DO_WAITID]: Define function under this macro name instead. [NO_DO_WAITID]: Don't define it at all. (do_waitid) [WNOWAIT, WEXITED]: If these POSIX.1 waitid flag bits are defined, then return ENOTSUP for combinations of selection bits other than WEXITED and WEXITED|WSTOPPED, which this version cannot support. * posix/tst-waitid.c: New file. * posix/Makefile (tests): Add it. 2004-06-28 Jakub Jelinek <jakub@redhat.com>
Diffstat (limited to 'inet')
-rw-r--r-- | inet/bug-if1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inet/bug-if1.c b/inet/bug-if1.c index ddf49aff5b..aa9925d6a7 100644 --- a/inet/bug-if1.c +++ b/inet/bug-if1.c @@ -20,6 +20,7 @@ #include <errno.h> #include <limits.h> #include <stdio.h> +#include <string.h> #include <net/if.h> |