From 3077fb9e6b642a2531754b451bba25245d20dfac Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Tue, 11 Jul 2000 21:34:34 +1000 Subject: - (djm) Add strsep function from OpenBSD libc for systems that lack it --- bsd-strsep.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 bsd-strsep.h (limited to 'bsd-strsep.h') diff --git a/bsd-strsep.h b/bsd-strsep.h new file mode 100644 index 000000000..d5ba6e0f1 --- /dev/null +++ b/bsd-strsep.h @@ -0,0 +1,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 */ -- cgit v1.2.3