diff options
Diffstat (limited to 'openbsd-compat/strsep.c')
-rw-r--r-- | openbsd-compat/strsep.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/openbsd-compat/strsep.c b/openbsd-compat/strsep.c index 330d84ce1..b36eb8fda 100644 --- a/openbsd-compat/strsep.c +++ b/openbsd-compat/strsep.c | |||
@@ -1,6 +1,4 @@ | |||
1 | /* OPENBSD ORIGINAL: lib/libc/string/strsep.c */ | 1 | /* $OpenBSD: strsep.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */ |
2 | |||
3 | /* $OpenBSD: strsep.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $ */ | ||
4 | 2 | ||
5 | /*- | 3 | /*- |
6 | * Copyright (c) 1990, 1993 | 4 | * Copyright (c) 1990, 1993 |
@@ -31,6 +29,8 @@ | |||
31 | * SUCH DAMAGE. | 29 | * SUCH DAMAGE. |
32 | */ | 30 | */ |
33 | 31 | ||
32 | /* OPENBSD ORIGINAL: lib/libc/string/strsep.c */ | ||
33 | |||
34 | #include "includes.h" | 34 | #include "includes.h" |
35 | 35 | ||
36 | #if !defined(HAVE_STRSEP) | 36 | #if !defined(HAVE_STRSEP) |
@@ -38,14 +38,6 @@ | |||
38 | #include <string.h> | 38 | #include <string.h> |
39 | #include <stdio.h> | 39 | #include <stdio.h> |
40 | 40 | ||
41 | #if defined(LIBC_SCCS) && !defined(lint) | ||
42 | #if 0 | ||
43 | static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93"; | ||
44 | #else | ||
45 | static char *rcsid = "$OpenBSD: strsep.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $"; | ||
46 | #endif | ||
47 | #endif /* LIBC_SCCS and not lint */ | ||
48 | |||
49 | /* | 41 | /* |
50 | * Get next token from string *stringp, where tokens are possibly-empty | 42 | * Get next token from string *stringp, where tokens are possibly-empty |
51 | * strings separated by characters from delim. | 43 | * strings separated by characters from delim. |