diff options
| author | Rich Felker <dalias@aerifal.cx> | 2011-09-03 23:26:17 -0400 |
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2011-09-03 23:26:17 -0400 |
| commit | d4fa6f0e08ff5a292d2aeeeeda80670a1a082cae (patch) | |
| tree | aa7de672af5efce3756440d0a15317fca3df90fb /include | |
| parent | 1e6937643577e1fb5ea8696c2f583e20bcd29279 (diff) | |
| download | musl-d4fa6f0e08ff5a292d2aeeeeda80670a1a082cae.tar.gz | |
implement fmemopen
testing so far has been minimal. may need further work.
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 f087d9f2..268338b5 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 *fmemopen(void *, size_t, const char *); FILE *open_memstream(char **, size_t *); FILE *fdopen(int, const char *); FILE *popen(const char *, const char *); |
