* cygwin.din (wprintf): Remove.

(_wprintf): Ditto.
	* syscalls.cc (wprintf): Ditto.
	* include/cygwin/version.h: Add FIXME comment.
This commit is contained in:
Corinna Vinschen
2008-04-10 09:27:58 +00:00
parent 9794095354
commit acbc84739f
4 changed files with 9 additions and 17 deletions

View File

@@ -2729,21 +2729,6 @@ __assertfail ()
exit (99);
}
/* FIXME: to do this right, maybe work out the usoft va_list machine
and use wsvprintfW instead?
*/
extern "C" int
wprintf (const char *fmt, ...)
{
va_list ap;
int ret;
va_start (ap, fmt);
ret = vprintf (fmt, ap);
va_end (ap);
return ret;
}
extern "C" int
vhangup ()
{