summaryrefslogtreecommitdiffstats
path: root/libc/stdio/_stdio.h
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-12-06 03:45:53 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-12-06 03:45:53 +0000
commit821e7539de6922c96e2a4fc5baa11fdc335072c9 (patch)
tree8ee7f5ac1797850d304a3b10ff4a7ca4d4f2a2dc /libc/stdio/_stdio.h
parentbd7bace793536f027790396d6358c14299e8595b (diff)
downloaduClibc-alpine-821e7539de6922c96e2a4fc5baa11fdc335072c9.tar.bz2
uClibc-alpine-821e7539de6922c96e2a4fc5baa11fdc335072c9.tar.xz
More merging from trunk.
Diffstat (limited to 'libc/stdio/_stdio.h')
-rw-r--r--libc/stdio/_stdio.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libc/stdio/_stdio.h b/libc/stdio/_stdio.h
index fdab8b8dc..858f2716b 100644
--- a/libc/stdio/_stdio.h
+++ b/libc/stdio/_stdio.h
@@ -273,6 +273,8 @@ extern int __stdio_trans2w(FILE *__restrict stream) attribute_hidden;
extern int __stdio_trans2r_o(FILE *__restrict stream, int oflag) attribute_hidden;
extern int __stdio_trans2w_o(FILE *__restrict stream, int oflag) attribute_hidden;
+extern int __setvbuf (FILE *__restrict __stream, char *__restrict __buf,
+ int __modes, size_t __n) __THROW attribute_hidden;
/**********************************************************************/
#ifdef __STDIO_BUFFERS
@@ -371,7 +373,7 @@ extern size_t __fwrite_unlocked(const void *__restrict ptr, size_t size,
extern size_t __fread_unlocked(void *__restrict ptr, size_t size,
size_t nmemb, FILE *__restrict stream) attribute_hidden;
-extern int __libc_fputc_unlocked(int c, FILE *stream) attribute_hidden;
+extern int __fputc_unlocked_internal(int c, FILE *stream) attribute_hidden;
extern int __fflush_unlocked(FILE *stream) attribute_hidden;
@@ -381,7 +383,7 @@ extern void __clearerr_unlocked(FILE *stream);
extern int __feof_unlocked(FILE *stream);
extern int __ferror_unlocked(FILE *stream);
-extern int __libc_fgetc_unlocked(FILE *stream) attribute_hidden;
+extern int __fgetc_unlocked_internal(FILE *stream) attribute_hidden;
extern char *__fgets_unlocked(char *__restrict s, int n,
FILE * __restrict stream) attribute_hidden;