]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/file/src/asctime_r.c
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / file / src / asctime_r.c
1 /*      $File: asctime_r.c,v 1.1 2012/05/15 17:14:36 christos Exp $     */
2
3 #include "file.h"
4 #ifndef lint
5 FILE_RCSID("@(#)$File: asctime_r.c,v 1.1 2012/05/15 17:14:36 christos Exp $")
6 #endif  /* lint */
7 #include <time.h>
8 #include <string.h>
9
10 /* asctime_r is not thread-safe anyway */
11 char *
12 asctime_r(const struct tm *t, char *dst)
13 {
14         char *p = asctime(t);
15         if (p == NULL)
16                 return NULL;
17         memcpy(dst, p, 26);
18         return dst;
19 }