From 46b99426e16c6a4df9f6217cd7989afd4520f557 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 20 Feb 2011 17:17:09 -0500 Subject: prototypes for GNU asprintf/vasprintf --- include/stdio.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/stdio.h b/include/stdio.h index 4abb1e65..186fdf2c 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -154,6 +154,8 @@ char *tempnam(const char *, const char *); char *cuserid(char *); #undef off64_t #define off64_t off_t +int asprintf(char **, const char *, ...); +int vasprintf(char **, const char *, va_list); #endif #ifdef __cplusplus -- cgit v1.2.1