X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=include%2Fstdio.h;h=dca8acc0272857c7050d333561598e05bf898cd5;hp=f087d9f223bc1c0ff758513e2e0d18661335a27d;hb=5e9314ff03076a94316d4e66efd082548c065f3d;hpb=b158b32a44d56ef20407d4285b58180447ffff1f diff --git a/include/stdio.h b/include/stdio.h index f087d9f2..dca8acc0 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 *); @@ -160,6 +161,10 @@ int vasprintf(char **, const char *, va_list); void setlinebuf(FILE *); void setbuffer(FILE *, char *, size_t); int fpurge(FILE *); +int fgetc_unlocked(FILE *); +int fputc_unlocked(int, FILE *); +char *fgets_unlocked(char *, int, FILE *); +int fputs_unlocked(const char *, FILE *); #endif #ifdef __cplusplus