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 ----- 1 file changed, 5 deletions(-) (limited to 'runtime/stdio.c') diff --git a/runtime/stdio.c b/runtime/stdio.c index 8351e5d9..5a2f33e6 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); -} -- cgit