X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ftime_r.h;h=1f2e94a9075cec5269dc8975631312623efb05d8;hb=8de557e31178699dd6e839850056f0653cdfba89;hp=fbd3375e9cd7cd51b4bdc3c8167e5386e5153751;hpb=7b224479dcac36108cbf435aff9b45767143ed25;p=gnulib.git diff --git a/lib/time_r.h b/lib/time_r.h index fbd3375e9..1f2e94a90 100644 --- a/lib/time_r.h +++ b/lib/time_r.h @@ -1,6 +1,6 @@ /* Reentrant time functions like localtime_r. - Copyright (C) 2003 Free Software Foundation, Inc. + Copyright (C) 2003, 2005 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* Written by Paul Eggert. */ @@ -37,9 +37,20 @@ # define gmtime_r rpl_gmtime_r # define localtime_r rpl_localtime_r +/* See the POSIX:2001 specification + . */ char *asctime_r (struct tm const * restrict, char * restrict); + +/* See the POSIX:2001 specification + . */ char *ctime_r (time_t const *, char *); + +/* See the POSIX:2001 specification + . */ struct tm *gmtime_r (time_t const * restrict, struct tm * restrict); + +/* See the POSIX:2001 specification + . */ struct tm *localtime_r (time_t const * restrict, struct tm * restrict); #endif