From 2e4581e4fba917f1779cd0a010a45698586c190a Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 3 Sep 2000 17:10:35 +0000 Subject: Update. 2000-09-03 Ulrich Drepper * time/sys/time.h (gettimeofday): Move restrict for tz parameter to the typedefs of __timezone_ptr_t. Reported by MATSUMURA Hiromitsu . 2000-09-02 Jakub Jelinek * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Increment counter in the loop. 2000-09-01 H.J. Lu * Makeconfig (built-program-cmd): Don't use the dynamic linker to run a binary if it is in $(tests-static). * Rules (binaries-static): Add $(tests-static). --- time/sys/time.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'time') diff --git a/time/sys/time.h b/time/sys/time.h index a753912299..12389fb815 100644 --- a/time/sys/time.h +++ b/time/sys/time.h @@ -55,9 +55,9 @@ struct timezone }; #if defined __USE_GNU || defined __USE_BSD -typedef struct timezone *__timezone_ptr_t; +typedef struct timezone *__restrict __timezone_ptr_t; #else -typedef void *__timezone_ptr_t; +typedef void *__restrict __timezone_ptr_t; #endif /* Get the current time of day and timezone information, @@ -66,7 +66,7 @@ typedef void *__timezone_ptr_t; NOTE: This form of timezone information is obsolete. Use the functions and variables declared in instead. */ extern int gettimeofday (struct timeval *__restrict __tv, - __timezone_ptr_t __restrict __tz) __THROW; + __timezone_ptr_t __tz) __THROW; /* Set the current time of day and timezone information. This call is restricted to the super-user. */ -- cgit 1.4.1