diff options
Diffstat (limited to 'plugins/common.h.in')
-rw-r--r-- | plugins/common.h.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/common.h.in b/plugins/common.h.in index 7281702..535ae4a 100644 --- a/plugins/common.h.in +++ b/plugins/common.h.in | |||
@@ -87,6 +87,22 @@ | |||
87 | # define strtoul(a,b,c) (unsigned long)atol((a)) | 87 | # define strtoul(a,b,c) (unsigned long)atol((a)) |
88 | #endif | 88 | #endif |
89 | 89 | ||
90 | #ifndef HAVE_ASPRINTF | ||
91 | int asprintf(char **strp, const char *fmt, ...); | ||
92 | #endif | ||
93 | |||
94 | #ifndef HAVE_VASPRINTF | ||
95 | /* int vasprintf(char **strp, const char *fmt, va_list ap); */ | ||
96 | #endif | ||
97 | |||
98 | #ifndef HAVE_SNPRINTF | ||
99 | int snprintf(char *str, size_t size, const char *format, ...); | ||
100 | #endif | ||
101 | |||
102 | #ifndef HAVE_VSNPRINTF | ||
103 | int vsnprintf(char *str, size_t size, const char *format, va_list ap); | ||
104 | #endif | ||
105 | |||
90 | /* | 106 | /* |
91 | * | 107 | * |
92 | * Standard Values | 108 | * Standard Values |