2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-28 13:08:06 +00:00

missing ifndef ISC_STRING_H wrapper for body

This commit is contained in:
David Lawrence 2000-04-28 03:56:27 +00:00
parent 32eddfc189
commit ed94876a19

View File

@ -15,17 +15,24 @@
* SOFTWARE.
*/
#ifndef ISC_STRING_H
#define ISC_STRING_H
#include <string.h>
#include <isc/lang.h>
#include <isc/platform.h>
#ifdef ISC_PLATFORM_NEEDSTRSEP
#include <isc/lang.h>
ISC_LANG_BEGINDECLS
#ifdef ISC_PLATFORM_NEEDSTRSEP
char *
isc_strsep(char **stringp, const char *delim);
#define strsep isc_strsep
#endif
ISC_LANG_ENDDECLS
#endif /* ISC_PLATFORM_NEEDSTRSEP */
#endif /* ISC_STRING_H */