2003-09-28 Timo Schulz <twoaday@freakmail.de>

* util.h [WIN32]: Prototype for asprintf.
        * dynload.h [WIN32]: Define RTLD_LAZY.
This commit is contained in:
Timo Schulz 2003-09-28 17:16:03 +00:00
parent 024bc22231
commit 4b929ff36d
3 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-09-28 Timo Schulz <twoaday@freakmail.de>
* util.h [WIN32]: Prototype for asprintf.
* dynload.h [WIN32]: Define RTLD_LAZY.
2003-09-28 Werner Koch <wk@gnupg.org> 2003-09-28 Werner Koch <wk@gnupg.org>
* util.h: Add the atoi_* and xtoi_* suite of macros from 1.9. * util.h: Add the atoi_* and xtoi_* suite of macros from 1.9.

View File

@ -26,6 +26,8 @@
#else #else
#include <windows.h> #include <windows.h>
#define RTLD_LAZY 0
static __inline__ void * static __inline__ void *
dlopen (const char * name, int flag) dlopen (const char * name, int flag)
{ {

View File

@ -241,7 +241,8 @@ int write_w32_registry_string(const char *root, const char *dir,
const char *name, const char *value); const char *name, const char *value);
/*-- strgutil.c --*/ /*-- strgutil.c --*/
int vasprintf ( char **result, const char *format, va_list args); int vasprintf (char **result, const char *format, va_list args);
int asprintf (char **buf, const char *fmt, ...);
#endif #endif
/**** other missing stuff ****/ /**** other missing stuff ****/