Add a prototype for strtok_r().

This commit is contained in:
John Polstra 1999-01-20 21:21:26 +00:00
parent b8b442b5ab
commit 5d00b6ccba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=42913

View File

@ -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