diff options
author | Werner Koch <wk@gnupg.org> | 1998-01-05 20:13:15 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1998-01-05 20:13:15 +0100 |
commit | e1117ae4a1bfc0bb644432b41ef90fead9a731cb (patch) | |
tree | 94318967baa939ebb198adaca70ad31caf0c1f54 /include/util.h | |
parent | added more stuff (diff) | |
download | gnupg2-e1117ae4a1bfc0bb644432b41ef90fead9a731cb.tar.xz gnupg2-e1117ae4a1bfc0bb644432b41ef90fead9a731cb.zip |
NT version compilesV0-0-0
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h index c32f74a70..46f337955 100644 --- a/include/util.h +++ b/include/util.h @@ -93,6 +93,9 @@ void free_strlist( STRLIST sl ); #define FREE_STRLIST(a) do { free_strlist((a)); (a) = NULL ; } while(0) char *memistr( char *buf, size_t buflen, const char *sub ); #define stricmp(a,b) strcasecmp((a),(b)) +#ifndef HAVE_STPCPY +char *stpcpy(char *a,const char *b); +#endif /******** some macros ************/ |