diff options
author | dwmalone <dwmalone@FreeBSD.org> | 2002-03-30 13:54:53 +0000 |
---|---|---|
committer | dwmalone <dwmalone@FreeBSD.org> | 2002-03-30 13:54:53 +0000 |
commit | 0183b6670cb4039c4dd9352b9271a8f6689c38ec (patch) | |
tree | c698294e12c490ab94a974c3fd462ae6d62c4d63 | |
parent | 0d14312af7c4884efd15293a6f0994a48894a19a (diff) | |
download | FreeBSD-src-0183b6670cb4039c4dd9352b9271a8f6689c38ec.zip FreeBSD-src-0183b6670cb4039c4dd9352b9271a8f6689c38ec.tar.gz |
Change a "/*" within a comment to a "**".
Add a missing include spotted by gcc30.
-rw-r--r-- | usr.bin/find/parsedate.y | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/find/parsedate.y b/usr.bin/find/parsedate.y index e954a0e..7bcfd61 100644 --- a/usr.bin/find/parsedate.y +++ b/usr.bin/find/parsedate.y @@ -1,6 +1,6 @@ %{ /* $Id: parsedate.y,v 1.9.2.1 2000/12/26 08:39:49 kondou Exp $ -/* $FreeBSD$ +** $FreeBSD$ ** ** Originally written by Steven M. Bellovin <smb@research.att.com> while ** at the University of North Carolina at Chapel Hill. Later tweaked by @@ -24,6 +24,7 @@ #include <sys/timeb.h> #include <ctype.h> #include <fts.h> +#include <string.h> #include <time.h> #include "find.h" |