X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fgettimeofday.c;h=f190c2dd53800f43906794812731ef2da57435a5;hb=2c18ba6d7d4466fb2f312c16e3b3f2b280bf5b58;hp=bd5576cb0993823f92f96a8f05b876cd78d6e771;hpb=dff73d331c91793b6c616f8ba80244175e54c5b6;p=gnulib.git diff --git a/lib/gettimeofday.c b/lib/gettimeofday.c index bd5576cb0..f190c2dd5 100644 --- a/lib/gettimeofday.c +++ b/lib/gettimeofday.c @@ -48,7 +48,7 @@ static struct tm *localtime_buffer_addr = &tm_zero_buffer; localtime uses for its result. */ struct tm * -localtime (time_t const *timep) +rpl_localtime (time_t const *timep) { #undef localtime extern struct tm *localtime (time_t const *); @@ -62,7 +62,7 @@ localtime (time_t const *timep) /* Same as above, since gmtime and localtime use the same buffer. */ struct tm * -gmtime (time_t const *timep) +rpl_gmtime (time_t const *timep) { #undef gmtime extern struct tm *gmtime (time_t const *); @@ -80,7 +80,7 @@ gmtime (time_t const *timep) /* This is a wrapper for tzset, for systems on which tzset may clobber the static buffer used for localtime's result. */ void -tzset (void) +rpl_tzset (void) { #undef tzset extern void tzset (void);