summaryrefslogtreecommitdiff
path: root/missing/strsep.c
diff options
context:
space:
mode:
Diffstat (limited to 'missing/strsep.c')
-rw-r--r--missing/strsep.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/missing/strsep.c b/missing/strsep.c
index ddad5964..d384cc14 100644
--- a/missing/strsep.c
+++ b/missing/strsep.c
@@ -31,14 +31,14 @@
* SUCH DAMAGE.
*/
-#include <sys/cdefs.h>
-#include <string.h>
-#include <stdio.h>
-
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93";
+static const char rcsid[] =
+ "@(#) $Header: /tcpdump/master/tcpdump/missing/strsep.c,v 1.2 2003-03-03 00:56:31 guy Exp $ (LBL)";
#endif /* LIBC_SCCS and not lint */
+#include <string.h>
+#include <stdio.h>
+
/*
* Get next token from string *stringp, where tokens are possibly-empty
* strings separated by characters from delim.