summaryrefslogtreecommitdiffstats
path: root/common/util.h
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2004-12-02 08:48:09 +0100
committerWerner Koch <wk@gnupg.org>2004-12-02 08:48:09 +0100
commit4a73d94757f61e4aa2d1841535409622c2c473e3 (patch)
tree3848fcc2f05e79f26e776f6e4dfa133aeff8d04e /common/util.h
parent2004-11-30 Timo Schulz <ts@g10code.com> (diff)
downloadgnupg2-4a73d94757f61e4aa2d1841535409622c2c473e3.tar.xz
gnupg2-4a73d94757f61e4aa2d1841535409622c2c473e3.zip
First take on a W32 port
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 --*/