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/timedc.c | |
parent | a40dd2fb1f521296ac73e77e22f23bdb19b2ec66 (diff) |
#include <string.h> not <strings.h> -- Yes, I'm a weanie...
Diffstat (limited to 'usr.sbin/timed/timedc/timedc.c')
-rw-r--r-- | usr.sbin/timed/timedc/timedc.c | 4 |
1 files changed, 2 insertions, 2 deletions
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> |