diff options
author | xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e> | 2008-12-31 18:30:20 +0000 |
---|---|---|
committer | xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e> | 2008-12-31 18:30:20 +0000 |
commit | c79395a8058295baf1b7250de3aa0ecc838ed2ab (patch) | |
tree | 140ef4a6ae47909fa890fd485e5e8b9dcb4cdf56 /runtime | |
parent | 6d25b4f3fc23601b3a84b4a70aab40ba429ac4b9 (diff) |
Removed vfprintf, because it was causing portability problems
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@931 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
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 |