* cygwin.din (wprintf): Remove.
(_wprintf): Ditto. * syscalls.cc (wprintf): Ditto. * include/cygwin/version.h: Add FIXME comment.
This commit is contained in:
parent
9794095354
commit
acbc84739f
@ -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>
|
||||
|
||||
* mount.cc (mount_info::from_fstab): Read user fstab files from
|
||||
|
@ -1732,8 +1732,6 @@ wmemcmp NOSIGFE
|
||||
wmemcpy NOSIGFE
|
||||
wmemmove NOSIGFE
|
||||
wmemset NOSIGFE
|
||||
wprintf SIGFE
|
||||
_wprintf = wprintf SIGFE
|
||||
write SIGFE
|
||||
_write = write SIGFE
|
||||
writev SIGFE
|
||||
|
@ -325,6 +325,8 @@ details. */
|
||||
lremovexattr, fremovexattr.
|
||||
181: Export cygwin_conv_path, cygwin_create_path, cygwin_conv_path_list.
|
||||
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 */
|
||||
|
@ -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 ()
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user