aboutsummaryrefslogtreecommitdiffstats
path: root/common/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/util.h')
-rw-r--r--common/util.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/common/util.h b/common/util.h
index b9ffe6562..fad7d38cc 100644
--- a/common/util.h
+++ b/common/util.h
@@ -144,7 +144,9 @@ int is_file_compressed (const char *s, int *ret_rc);
int vasprintf (char **result, const char *format, va_list args);
int asprintf (char **result, const char *format, ...) JNLIB_GCC_A_PRINTF(2,3);
#endif
-
+#ifndef HAVE_STRSEP
+char *strsep (char **stringp, const char *delim);
+#endif
/*-- some macros to replace ctype ones and avoid locale problems --*/