Blame lib/localtime-buffer.h

Packit Service c30d13
/* Provide access to the last buffer returned by localtime() or gmtime().
Packit Service c30d13
Packit Service c30d13
   Copyright (C) 2001-2003, 2005-2007, 2009-2018 Free Software Foundation, Inc.
Packit Service c30d13
Packit Service c30d13
   This program is free software; you can redistribute it and/or modify
Packit Service c30d13
   it under the terms of the GNU General Public License as published by
Packit Service c30d13
   the Free Software Foundation; either version 3, or (at your option)
Packit Service c30d13
   any later version.
Packit Service c30d13
Packit Service c30d13
   This program is distributed in the hope that it will be useful,
Packit Service c30d13
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service c30d13
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service c30d13
   GNU General Public License for more details.
Packit Service c30d13
Packit Service c30d13
   You should have received a copy of the GNU General Public License
Packit Service c30d13
   along with this program; if not, see <https://www.gnu.org/licenses/>.  */
Packit Service c30d13
Packit Service c30d13
/* written by Jim Meyering */
Packit Service c30d13
Packit Service c30d13
#include <time.h>
Packit Service c30d13
Packit Service c30d13
#if GETTIMEOFDAY_CLOBBERS_LOCALTIME || TZSET_CLOBBERS_LOCALTIME
Packit Service c30d13
Packit Service c30d13
/* The address of the last buffer returned by localtime() or gmtime().  */
Packit Service c30d13
extern struct tm *localtime_buffer_addr;
Packit Service c30d13
Packit Service c30d13
#endif