Removed unused fprintf for now since it was giving compiler warnings.

This commit is contained in:
skarg
2008-07-17 21:14:05 +00:00
parent fb614330c9
commit 22cce0ceda
2 changed files with 0 additions and 14 deletions
-12
View File
@@ -49,15 +49,3 @@ void debug_printf(const char * format, ...)
return;
}
void debug_fprintf(FILE * stream, const char * format, ...)
{
va_list ap;
va_start(ap, format);
vfprintf(stream, format, ap);
va_end(ap);
fflush(stream);
return;
}