diff options
author | stsp <> | 2014-02-05 20:42:32 +0000 |
---|---|---|
committer | stsp <> | 2014-02-05 20:42:32 +0000 |
commit | f4838ba0cb63eb803af7bf3ba48564dc877b116e (patch) | |
tree | 037ec60416bf56684c288b6399d981b0da2f9984 | |
parent | 6d230d5ca25a8820f1ad99b92d9152a6a606a042 (diff) | |
download | openbsd-f4838ba0cb63eb803af7bf3ba48564dc877b116e.tar.gz openbsd-f4838ba0cb63eb803af7bf3ba48564dc877b116e.tar.bz2 openbsd-f4838ba0cb63eb803af7bf3ba48564dc877b116e.zip |
Remove unnecessary stdio.h include.
Patch by Jean-Philippe Ouellet ; ok krw@
-rw-r--r-- | src/lib/libc/string/strsep.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libc/string/strsep.c b/src/lib/libc/string/strsep.c index bcca681e03..2ffc4b4c46 100644 --- a/src/lib/libc/string/strsep.c +++ b/src/lib/libc/string/strsep.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: strsep.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */ | 1 | /* $OpenBSD: strsep.c,v 1.7 2014/02/05 20:42:32 stsp Exp $ */ |
2 | 2 | ||
3 | /*- | 3 | /*- |
4 | * Copyright (c) 1990, 1993 | 4 | * Copyright (c) 1990, 1993 |
@@ -30,7 +30,6 @@ | |||
30 | */ | 30 | */ |
31 | 31 | ||
32 | #include <string.h> | 32 | #include <string.h> |
33 | #include <stdio.h> | ||
34 | 33 | ||
35 | /* | 34 | /* |
36 | * Get next token from string *stringp, where tokens are possibly-empty | 35 | * Get next token from string *stringp, where tokens are possibly-empty |