diff options
Diffstat (limited to 'libbb/libbb.h')
-rw-r--r-- | libbb/libbb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbb/libbb.h b/libbb/libbb.h index 70ac36a..04ed2ae 100644 --- a/libbb/libbb.h +++ b/libbb/libbb.h @@ -46,6 +46,8 @@ typedef unsigned int socklen_t; /* libc5 doesn't implement BSD 4.4 daemon() */ extern int daemon (int nochdir, int noclose); +/* libc5 doesn't implement strtok_r */ +char *strtok_r(char *s, const char *delim, char **ptrptr); #endif /* Some useful definitions */ |