diff options
author | alex <alex@FreeBSD.org> | 1998-10-03 16:29:59 +0000 |
---|---|---|
committer | alex <alex@FreeBSD.org> | 1998-10-03 16:29:59 +0000 |
commit | 0e0379ef0bb0bf835e897d83cbb21b65bdece86e (patch) | |
tree | 79f9f4baedf2a2dda8ee41f74bcd65bfe3d7922c /bin/date | |
parent | e7b28f3337e3b7d487743f78ea128e5b1ab4795c (diff) | |
download | FreeBSD-src-0e0379ef0bb0bf835e897d83cbb21b65bdece86e.zip FreeBSD-src-0e0379ef0bb0bf835e897d83cbb21b65bdece86e.tar.gz |
Added missing #include <string.h>
Diffstat (limited to 'bin/date')
-rw-r--r-- | bin/date/date.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/date/date.c b/bin/date/date.c index c79e1e2..043cdcc 100644 --- a/bin/date/date.c +++ b/bin/date/date.c @@ -42,7 +42,7 @@ static char const copyright[] = static char sccsid[] = "@(#)date.c 8.2 (Berkeley) 4/28/95"; #endif static const char rcsid[] = - "$Id: date.c,v 1.24 1998/05/06 06:51:15 charnier Exp $"; + "$Id: date.c,v 1.25 1998/05/13 07:31:39 charnier Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -52,6 +52,7 @@ static const char rcsid[] = #include <err.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <syslog.h> #include <unistd.h> #include <locale.h> |