mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
add an unimplemented tzset().
ctime_r() and localtime_r() are already using the localtime, so no need to do anything. http://pubs.opengroup.org/onlinepubs/9699919799/functions/tzset.html Signed-off-by: Henning Nielsen Lund <hnl_dk@amigaos.dk>
This commit is contained in:
@ -123,6 +123,7 @@ extern char * asctime_r(const struct tm *tm,char * buffer);
|
||||
extern char * ctime_r(const time_t *tptr,char * buffer);
|
||||
extern struct tm * gmtime_r(const time_t *t,struct tm * tm_ptr);
|
||||
extern struct tm * localtime_r(const time_t *t,struct tm * tm_ptr);
|
||||
extern void tzset(void);
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user