mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
(__gettimeofday): Don't fail if the user passes in TZ, just zero it (emacs passes in a dummy variable, and rms says the hurd should be the one to change).
This commit is contained in:
parent
2e6878f7b1
commit
a1a5fa67c6
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1991, 1992, 1995 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1991, 1992, 1995, 1996 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -31,10 +31,7 @@ DEFUN(__gettimeofday, (tv, tz),
|
||||
kern_return_t err;
|
||||
|
||||
if (tz != NULL)
|
||||
{
|
||||
errno = ENOSYS;
|
||||
return -1;
|
||||
}
|
||||
*tz = (struct timezone){0, 0}; /* XXX */
|
||||
|
||||
if (err = __host_get_time (__mach_host_self (), (time_value_t *) tv))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user