blob: 25db16acd673340f44255febc8851164b99e00b0 [file] [log] [blame]
Damien Millere9cf3572001-02-09 12:55:35 +11001/* $Id: strtok.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
2
Damien Miller80ecfe82000-09-24 11:21:31 +11003#ifndef _BSD_STRTOK_H
4#define _BSD_STRTOK_H
5
6#include "config.h"
7
8#ifndef HAVE_STRTOK_R
9char *strtok_r(char *s, const char *delim, char **last);
10#endif /* HAVE_STRTOK_R */
11
12#endif /* _BSD_STRTOK_H */