diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-03-17 23:44:56 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-03-17 23:44:56 +0000 |
commit | 1373630bc4a650e9362faef01feb91bc898452a6 (patch) | |
tree | 0142bd1dfb7be6b0b4684eb7b8dcc85ecab2eff1 /compiler-rt/SDKs/linux/usr/include | |
parent | 20ade551a6754908ffe3b2ea1c2eea487d923294 (diff) | |
download | bcm5719-llvm-1373630bc4a650e9362faef01feb91bc898452a6.tar.gz bcm5719-llvm-1373630bc4a650e9362faef01feb91bc898452a6.zip |
Reapply "PGO: Statically generate data structures"
Reapply r204079 and r204083, this time with stubs for fputc in
compiler-rt.
llvm-svn: 204091
Diffstat (limited to 'compiler-rt/SDKs/linux/usr/include')
-rw-r--r-- | compiler-rt/SDKs/linux/usr/include/stdio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/SDKs/linux/usr/include/stdio.h b/compiler-rt/SDKs/linux/usr/include/stdio.h index fba593640c3..e2161daa468 100644 --- a/compiler-rt/SDKs/linux/usr/include/stdio.h +++ b/compiler-rt/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 *); |