diff options
author | dim <dim@FreeBSD.org> | 2015-01-07 19:55:37 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-01-07 19:55:37 +0000 |
commit | 2f1c5cc1039d86db0037cb086bd58f4b90dc6f66 (patch) | |
tree | 9b19e801150082c33e9152275829a6ce90614b55 /SDKs/linux/usr/include | |
parent | c3f67e1dc21025f1026cbf72628b19fb37f7b53d (diff) | |
download | FreeBSD-src-2f1c5cc1039d86db0037cb086bd58f4b90dc6f66.zip FreeBSD-src-2f1c5cc1039d86db0037cb086bd58f4b90dc6f66.tar.gz |
Import compiler-rt trunk r224034.
https://llvm.org/svn/llvm-project/compiler-rt/trunk@224034
Diffstat (limited to 'SDKs/linux/usr/include')
-rw-r--r-- | SDKs/linux/usr/include/stdio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/SDKs/linux/usr/include/stdio.h b/SDKs/linux/usr/include/stdio.h index fba5936..e2161da 100644 --- a/SDKs/linux/usr/include/stdio.h +++ b/SDKs/linux/usr/include/stdio.h @@ -35,6 +35,7 @@ extern int fflush(FILE *); extern FILE *fopen(const char * restrict, const char * restrict); extern FILE *fdopen(int, const char * restrict); extern int fprintf(FILE * restrict, const char * restrict, ...); +extern int fputc(int, FILE *); extern size_t fwrite(const void * restrict, size_t, size_t, FILE * restrict); extern size_t fread(void * restrict, size_t, size_t, FILE * restrict); extern long ftell(FILE *); |