mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-23 01:16:43 -06:00
3ce1d63e1a
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@6833 57a11ea4-9604-0410-9ed3-97b8803252fd
11 lines
236 B
C
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
|
|
|