diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-09-03 00:45:21 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-09-03 00:45:21 -0400 |
commit | b158b32a44d56ef20407d4285b58180447ffff1f (patch) | |
tree | 0f037300f7c1746bc43e0a5c86e5e708059a41f3 /include | |
parent | adb7093caae451348371d2299f6113b788439602 (diff) | |
download | musl-b158b32a44d56ef20407d4285b58180447ffff1f.tar.gz musl-b158b32a44d56ef20407d4285b58180447ffff1f.tar.bz2 musl-b158b32a44d56ef20407d4285b58180447ffff1f.tar.xz musl-b158b32a44d56ef20407d4285b58180447ffff1f.zip |
implement open_memstream
this is the first attempt, and may have bugs. only minimal testing has
been performed.
Diffstat (limited to 'include')
-rw-r--r-- | include/stdio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/stdio.h b/include/stdio.h index b54fe195..f087d9f2 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -121,6 +121,7 @@ FILE *tmpfile(void); #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) +FILE *open_memstream(char **, size_t *); FILE *fdopen(int, const char *); FILE *popen(const char *, const char *); int pclose(FILE *); |