diff options
author | 2014-02-05 20:42:32 +0000 | |
---|---|---|
committer | 2014-02-05 20:42:32 +0000 | |
commit | 55e4bd54804ff10d0bc50ea8464aaa77e4f8c13d (patch) | |
tree | aa4da5221a80e924d5b92cd386bba886570b1ed9 /lib/libc/string/strsep.c | |
parent | make pax cope with a stripped down format list, e.g. when compiled (diff) | |
download | wireguard-openbsd-55e4bd54804ff10d0bc50ea8464aaa77e4f8c13d.tar.xz wireguard-openbsd-55e4bd54804ff10d0bc50ea8464aaa77e4f8c13d.zip |
Remove unnecessary stdio.h include.
Patch by Jean-Philippe Ouellet ; ok krw@
Diffstat (limited to 'lib/libc/string/strsep.c')
-rw-r--r-- | lib/libc/string/strsep.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/string/strsep.c b/lib/libc/string/strsep.c index bcca681e033..2ffc4b4c46a 100644 --- a/lib/libc/string/strsep.c +++ b/lib/libc/string/strsep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strsep.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */ +/* $OpenBSD: strsep.c,v 1.7 2014/02/05 20:42:32 stsp Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -30,7 +30,6 @@ */ #include <string.h> -#include <stdio.h> /* * Get next token from string *stringp, where tokens are possibly-empty |