diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/stdio.c | 5 | ||||
-rw-r--r-- | runtime/stdio.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/runtime/stdio.c b/runtime/stdio.c index 8351e5d..5a2f33e 100644 --- a/runtime/stdio.c +++ b/runtime/stdio.c @@ -160,8 +160,3 @@ int compcert_ungetc(int c, compcert_FILE * f) { return ungetc(c, (FILE *)(f->fstr)); } - -int compcert_vfprintf(compcert_FILE * f, const char * s, va_list va) -{ - return vfprintf((FILE *)(f->fstr), s, va); -} diff --git a/runtime/stdio.h b/runtime/stdio.h index 75a2326..27a4313 100644 --- a/runtime/stdio.h +++ b/runtime/stdio.h @@ -45,7 +45,6 @@ extern int compcert_getc(compcert_FILE *); extern int compcert_putc(int, compcert_FILE *); extern void compcert_rewind(compcert_FILE *); extern int compcert_ungetc(int, compcert_FILE *); -extern int compcert_vfprintf(compcert_FILE *, const char *, va_list); #ifndef _INSIDE_COMPCERT_COMPATIBILITY_LIBRARY #define FILE compcert_FILE |