From d4fa6f0e08ff5a292d2aeeeeda80670a1a082cae Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 3 Sep 2011 23:26:17 -0400 Subject: implement fmemopen testing so far has been minimal. may need further work. --- include/stdio.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/stdio.h') 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 *); -- cgit v1.2.1