* t_inetd.c: Include stdlib.h (if present) for atoi() prototype,
authorEzra Peisach <epeisach@mit.edu>
Mon, 30 Mar 1998 21:40:28 +0000 (21:40 +0000)
committerEzra Peisach <epeisach@mit.edu>
Mon, 30 Mar 1998 21:40:28 +0000 (21:40 +0000)
Include unistd.h (if present) for dup() prototype.

More gcc -Wall cleanups.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10507 dc483132-0cff-0310-8789-dd5450dbe970

src/tests/dejagnu/ChangeLog
src/tests/dejagnu/t_inetd.c

index f0f1b31fa022e548b6cc1ba7468b1963d7a4104f..86d5e9611047a718eb5986e7f59d72e4ef687ca1 100644 (file)
@@ -1,3 +1,9 @@
+Mon Mar 30 13:57:07 1998  Ezra Peisach  <epeisach@kangaroo.mit.edu>
+
+       * t_inetd.c: Include stdlib.h (if present) for atoi() prototype, 
+       Include unistd.h (if present) for dup() prototype.
+
+
 Wed Feb 18 16:28:37 1998  Tom Yu  <tlyu@mit.edu>
 
        * Makefile.in: Remove trailing slash from thisconfigdir.  Fix up
index d5a01773a2e6c22cf00c740318e3618aa5468153..0fe4db834e662649589fc69568294e9517399b4a 100644 (file)
 
 
 
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
+
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <errno.h>
 #include <signal.h>
 
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
+
 #include "com_err.h"
 
 extern int errno;
@@ -54,6 +62,7 @@ static void usage()
        exit(1);
 }
 
+int
 main(argc, argv)
     int argc;
     char **argv;