blob: d5ba6e0f1216ebbb0e83d8366ff86e860c75f02e (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _BSD_STRSEP_H
#define _BSD_STRSEP_H
#include "config.h"
#ifndef HAVE_STRSEP
char *strsep(char **stringp, const char *delim);
#endif /* HAVE_STRSEP */
#endif /* _BSD_STRSEP_H */
|