changes for 3.15.5

This commit is contained in:
2017-07-07 17:01:22 +02:00
parent f64bfaae9e
commit 02fb5c42f0
5 changed files with 27 additions and 15 deletions
+2 -2
View File
@@ -8,8 +8,8 @@ extern "C" {
#define __attribute__(arg)
#endif
int asprintf(char** pbuffer, const char* format, ...) __attribute__((format(printf,2,3)));
int vasprintf(char** pbuffer, const char* format, va_list ap) __attribute__((format(printf,2,0)));
int asprintf(char** pbuffer, const char* format, ...) __attribute__((__format__(__printf__,2,3)));
int vasprintf(char** pbuffer, const char* format, va_list ap) __attribute__((__format__(__printf__,2,0)));
#ifdef __cplusplus
}
#endif