12345678910111213141516171819 |
- /* $File: gmtime_r.c,v 1.2 2015/07/11 14:41:37 christos Exp $ */
- #include "file.h"
- #ifndef lint
- FILE_RCSID("@(#)$File: gmtime_r.c,v 1.2 2015/07/11 14:41:37 christos Exp $")
- #endif /* lint */
- #include <time.h>
- #include <string.h>
- /* asctime_r is not thread-safe anyway */
- struct tm *
- gmtime_r(const time_t *t, struct tm *tm)
- {
- struct tm *tmp = gmtime(t);
- if (tmp == NULL)
- return NULL;
- memcpy(tm, tmp, sizeof(*tm));
- return tmp;
- }
|