diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-18 03:11:37 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-18 03:11:37 +0000 |
commit | 9afd24b0e35ecdc6132b93f8c2dd8ee57ff8a636 (patch) | |
tree | ad1c9059bcb63fca9036237695ffbdf53ebc9c5d /usr.sbin/timed/timedc | |
parent | a40dd2fb1f521296ac73e77e22f23bdb19b2ec66 (diff) |
#include <string.h> not <strings.h> -- Yes, I'm a weanie...
Diffstat (limited to 'usr.sbin/timed/timedc')
-rw-r--r-- | usr.sbin/timed/timedc/cmds.c | 4 | ||||
-rw-r--r-- | usr.sbin/timed/timedc/timedc.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/timed/timedc/cmds.c b/usr.sbin/timed/timedc/cmds.c index fa6e8ca1c53..d85078513bf 100644 --- a/usr.sbin/timed/timedc/cmds.c +++ b/usr.sbin/timed/timedc/cmds.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)cmds.c 5.1 (Berkeley) 5/11/93"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.3 $" +#ident "$Revision: 1.4 $" #endif #include "timedc.h" @@ -47,7 +47,7 @@ static char sccsid[] = "@(#)cmds.c 5.1 (Berkeley) 5/11/93"; #include <netinet/ip_icmp.h> #include <stdlib.h> -#include <strings.h> +#include <string.h> #include <unistd.h> #define TSPTYPES diff --git a/usr.sbin/timed/timedc/timedc.c b/usr.sbin/timed/timedc/timedc.c index 9c5d0d573a1..b1362416cf1 100644 --- a/usr.sbin/timed/timedc/timedc.c +++ b/usr.sbin/timed/timedc/timedc.c @@ -42,11 +42,11 @@ static char sccsid[] = "@(#)timedc.c 5.1 (Berkeley) 5/11/93"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.2 $" +#ident "$Revision: 1.3 $" #endif #include "timedc.h" -#include <strings.h> +#include <string.h> #include <signal.h> #include <ctype.h> #include <setjmp.h> |