diff options
author | guy <guy> | 2003-03-03 00:56:31 +0000 |
---|---|---|
committer | guy <guy> | 2003-03-03 00:56:31 +0000 |
commit | 58159be647567b81e04e07f3ad136f3b4970487d (patch) | |
tree | 4c3a732caf0634cb598bc59ef6e41449a5359429 | |
parent | 6e1d8a0a4c58e21d11375b17707f823eec8d950e (diff) | |
download | tcpdump-58159be647567b81e04e07f3ad136f3b4970487d.tar.gz |
Get rid of the include of <sys/cdefs.h>, as that's a BSDism, and put in a
standard tcpdump RCS ID.
-rw-r--r-- | missing/strsep.c | 10 |
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. |