gnucash/lib/libc/localtime_r.h
David Hampton 3ce1d63e1a Pogma's initial Mac OS X patches.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@6833 57a11ea4-9604-0410-9ed3-97b8803252fd
2002-05-07 23:22:24 +00:00

11 lines
236 B
C

#ifndef __LOCALTIME_R_H__
#define __LOCALTIME_R_H__
#include <time.h>
/*
* Version of "localtime_r()", for the benefit of OSes that don't have it.
*/
extern struct tm *localtime_r(const time_t *const timep, struct tm *p_tm);
#endif