diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-04-06 14:28:29 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-04-06 14:28:29 -0400 |
commit | 1fee6186fed608ba61257e04355b5b24bd859a05 (patch) | |
tree | 24345b23d5a62fe917f5e7e4c68b6fb05b61312c /src/string | |
parent | 6b87e941f932a93120383de33f5237395fc1354a (diff) | |
download | musl-1fee6186fed608ba61257e04355b5b24bd859a05.tar.gz musl-1fee6186fed608ba61257e04355b5b24bd859a05.tar.bz2 musl-1fee6186fed608ba61257e04355b5b24bd859a05.tar.xz musl-1fee6186fed608ba61257e04355b5b24bd859a05.zip |
fix prototype for strsep
Diffstat (limited to 'src/string')
-rw-r--r-- | src/string/strsep.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/string/strsep.c b/src/string/strsep.c index 1bfe1db1..cb37c32e 100644 --- a/src/string/strsep.c +++ b/src/string/strsep.c @@ -1,3 +1,4 @@ +#define _GNU_SOURCE #include <string.h> char *strsep(char **str, const char *sep) |