diff options
Diffstat (limited to 'src/portab/strtok_r.c')
| -rw-r--r-- | src/portab/strtok_r.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/portab/strtok_r.c b/src/portab/strtok_r.c index 852c8f70..043898e9 100644 --- a/src/portab/strtok_r.c +++ b/src/portab/strtok_r.c @@ -1,8 +1,18 @@ +/* + * ngIRCd -- The Next Generation IRC Daemon + */ + #include "portab.h" -#include <string.h> + +/** + * @file + * Implementation of strtok_r() + */ #ifndef HAVE_STRTOK_R +#include <string.h> + char * strtok_r(char *str, const char *delim, char **saveptr) { |