4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-31 11:30:56 +08:00

* 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

@ -1,3 +1,10 @@
2008-04-10 Corinna Vinschen <corinna@vinschen.de>
* cygwin.din (wprintf): Remove.
(_wprintf): Ditto.
* syscalls.cc (wprintf): Ditto.
* include/cygwin/version.h: Add FIXME comment.
2008-04-08 Corinna Vinschen <corinna@vinschen.de> 2008-04-08 Corinna Vinschen <corinna@vinschen.de>
* mount.cc (mount_info::from_fstab): Read user fstab files from * mount.cc (mount_info::from_fstab): Read user fstab files from

View File

@ -1732,8 +1732,6 @@ wmemcmp NOSIGFE
wmemcpy NOSIGFE wmemcpy NOSIGFE
wmemmove NOSIGFE wmemmove NOSIGFE
wmemset NOSIGFE wmemset NOSIGFE
wprintf SIGFE
_wprintf = wprintf SIGFE
write SIGFE write SIGFE
_write = write SIGFE _write = write SIGFE
writev SIGFE writev SIGFE

View File

@ -325,6 +325,8 @@ details. */
lremovexattr, fremovexattr. lremovexattr, fremovexattr.
181: Export cygwin_conv_path, cygwin_create_path, cygwin_conv_path_list. 181: Export cygwin_conv_path, cygwin_create_path, cygwin_conv_path_list.
182: Export lockf. 182: Export lockf.
FIXME: Removed 12 year old and entirely wrong wprintf function at
this point. We need a working implementation soon.
*/ */
/* Note that we forgot to bump the api for ualarm, strtoll, strtoull */ /* Note that we forgot to bump the api for ualarm, strtoll, strtoull */

View File

@ -2729,21 +2729,6 @@ __assertfail ()
exit (99); 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 extern "C" int
vhangup () vhangup ()
{ {