summaryrefslogtreecommitdiff
path: root/openbsd-compat/strtok.h
diff options
context:
space:
mode:
Diffstat (limited to 'openbsd-compat/strtok.h')
-rw-r--r--openbsd-compat/strtok.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/openbsd-compat/strtok.h b/openbsd-compat/strtok.h
new file mode 100644
index 000000000..5a3a56959
--- /dev/null
+++ b/openbsd-compat/strtok.h
@@ -0,0 +1,10 @@
1#ifndef _BSD_STRTOK_H
2#define _BSD_STRTOK_H
3
4#include "config.h"
5
6#ifndef HAVE_STRTOK_R
7char *strtok_r(char *s, const char *delim, char **last);
8#endif /* HAVE_STRTOK_R */
9
10#endif /* _BSD_STRTOK_H */