mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-23 09:26:27 -06:00
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
|
||
|
|