* SUCH DAMAGE.
*/
-#include <sys/cdefs.h>
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <netdissect-stdinc.h>
+
#include <string.h>
-#include <stdio.h>
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93";
-#endif /* LIBC_SCCS and not lint */
+#include "netdissect.h"
/*
* Get next token from string *stringp, where tokens are possibly-empty
* If *stringp is NULL, strsep returns NULL.
*/
char *
-strsep(stringp, delim)
- register char **stringp;
- register const char *delim;
+strsep(char **stringp, const char *delim)
{
register char *s;
register const char *spanp;