 |
Ardour
8.12
|
Go to the documentation of this file.
19 #ifndef PBD_LOCALTIME_R
20 #define PBD_LOCALTIME_R
25 #define localtime_r( _clock, _result ) \
26 ( *(_result) = *localtime( (_clock) ), (_result) )
28 #elif defined COMPILER_MINGW
37 extern struct tm *localtime(
const long int *_Time);
38 extern struct tm *localtime_r(
const time_t *
const timep,
struct tm *p_tm);