aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-02-20 17:17:09 -0500
committerRich Felker <dalias@aerifal.cx>2011-02-20 17:17:09 -0500
commit46b99426e16c6a4df9f6217cd7989afd4520f557 (patch)
tree3b1869b4143dfc72da547f0928b822c071b979c0
parentfix %n specifier, again. this time it was storing the wrong value. (diff)
downloadgrovel-46b99426e16c6a4df9f6217cd7989afd4520f557.tar.gz
grovel-46b99426e16c6a4df9f6217cd7989afd4520f557.tar.xz
prototypes for GNU asprintf/vasprintf
-rw-r--r--include/stdio.h2
1 files changed, 2 insertions, 0 deletions
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