diff options
Diffstat (limited to 'src/assuan-defs.h')
-rw-r--r-- | src/assuan-defs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/assuan-defs.h b/src/assuan-defs.h index cf7ce09..7a96c0f 100644 --- a/src/assuan-defs.h +++ b/src/assuan-defs.h @@ -298,7 +298,9 @@ char *stpcpy (char *dest, const char *src); #define clearenv _assuan_clearenv int setenv (const char *name, const char *value, int replace); #endif - +#ifndef HAVE_PUTC_UNLOCKED +int putc_unlocked (int c, FILE *stream) +#endif #define DIM(v) (sizeof(v)/sizeof((v)[0])) #define DIMof(type,member) DIM(((type *)0)->member) |