blob: f690b8d76b0a65daea02e6f77d219be8e1e6d96d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* $NetBSD: localtime_r.c,v 1.1.1.1 2017/02/10 17:42:57 christos Exp $ */
/* $File: localtime_r.c,v 1.2 2015/07/11 14:41:37 christos Exp $ */
#include "file.h"
#ifndef lint
#if 0
FILE_RCSID("@(#)$File: localtime_r.c,v 1.2 2015/07/11 14:41:37 christos Exp $")
#else
__RCSID("$NetBSD: localtime_r.c,v 1.1.1.1 2017/02/10 17:42:57 christos Exp $");
#endif
#endif /* lint */
#include <time.h>
#include <string.h>
/* asctime_r is not thread-safe anyway */
struct tm *
localtime_r(const time_t *t, struct tm *tm)
{
struct tm *tmp = localtime(t);
if (tmp == NULL)
return NULL;
memcpy(tm, tmp, sizeof(*tm));
return tmp;
}
|