]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/ldns/compat/ctime_r.c
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / ldns / compat / ctime_r.c
1 #ifdef HAVE_CONFIG_H
2 #include <ldns/config.h>
3 #endif
4
5 #ifdef HAVE_TIME_H
6 #include <time.h>
7 #endif
8
9 char *ctime_r(const time_t *timep, char *buf)
10 {
11         /* no thread safety. */
12         char* result = ctime(timep);
13         if(buf && result)
14                 strcpy(buf, result);
15         return result;
16 }