From c79395a8058295baf1b7250de3aa0ecc838ed2ab Mon Sep 17 00:00:00 2001 From: xleroy Date: Wed, 31 Dec 2008 18:30:20 +0000 Subject: 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 --- runtime/stdio.c | 5 ----- runtime/stdio.h | 1 - 2 files changed, 6 deletions(-) (limited to 'runtime') 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 -- cgit v1.2.3