- (djm) Add strsep function from OpenBSD libc for systems that lack it
diff --git a/bsd-strsep.h b/bsd-strsep.h
new file mode 100644
index 0000000..d5ba6e0
--- /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 */