]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Get rid of the include of <sys/cdefs.h>, as that's a BSDism, and put in a
authorguy <guy>
Mon, 3 Mar 2003 00:56:31 +0000 (00:56 +0000)
committerguy <guy>
Mon, 3 Mar 2003 00:56:31 +0000 (00:56 +0000)
standard tcpdump RCS ID.

missing/strsep.c

index ddad5964ce193493cca4e972b495132381b995ba..d384cc149e1a0397271c52bcf4087de8e131f602 100644 (file)
  * 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.