diff options
Diffstat (limited to 'lib/libc/string/strsep.c')
-rw-r--r-- | lib/libc/string/strsep.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/lib/libc/string/strsep.c b/lib/libc/string/strsep.c index 485f651..5e9fa9f 100644 --- a/lib/libc/string/strsep.c +++ b/lib/libc/string/strsep.c @@ -31,17 +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"; #endif /* LIBC_SCCS and not lint */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + +#include <string.h> +#include <stdio.h> /* * Get next token from string *stringp, where tokens are possibly-empty |