From 5d00b6ccba148e6bf641997e0a2e6078db3b26c3 Mon Sep 17 00:00:00 2001 From: John Polstra Date: Wed, 20 Jan 1999 21:21:26 +0000 Subject: [PATCH] Add a prototype for strtok_r(). --- include/string.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/string.h b/include/string.h index 81c868ab98f5..acfebfc7141a 100644 --- a/include/string.h +++ b/include/string.h @@ -86,6 +86,7 @@ char *strdup __P((const char *)); void strmode __P((int, char *)); int strncasecmp __P((const char *, const char *, size_t)); char *strsep __P((char **, const char *)); +char *strtok_r __P((char *, const char *, char **)); void swab __P((const void *, void *, size_t)); #endif __END_DECLS