diff options
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/util.h b/include/util.h index f89dade7c..d8294f6db 100644 --- a/include/util.h +++ b/include/util.h @@ -207,10 +207,12 @@ int strcasecmp( const char *, const char *b); #define stricmp(a,b) strcasecmp( (a), (b) ) #endif -/*-- w32reg.c --*/ #ifdef __MINGW32__ +/*-- w32reg.c --*/ char *read_w32_registry_string( const char *root, const char *dir, const char *name ); +/*-- strgutil.c --*/ +int vasprintf ( char **result, const char *format, va_list args); #endif /**** other missing stuff ****/ |