source: asp3_tinet_ecnl_arm/trunk/musl-1.1.18/src/time/gmtime_r.c@ 352

Last change on this file since 352 was 352, checked in by coas-nagasima, 6 years ago

arm向けASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 475 bytes
Line 
1#include "time_impl.h"
2#include <errno.h>
3#include "libc.h"
4
5extern const char __gmt[];
6
7struct tm *__gmtime_r(const time_t *restrict t, struct tm *restrict tm)
8{
9 if (__secs_to_tm(*t, tm) < 0) {
10 errno = EOVERFLOW;
11 return 0;
12 }
13 tm->tm_isdst = 0;
14 tm->__tm_gmtoff = 0;
15 tm->__tm_zone = __gmt;
16 return tm;
17}
18
19#ifndef __c2__
20weak_alias(__gmtime_r, gmtime_r);
21#else
22struct tm *gmtime_r(const time_t *restrict t, struct tm *restrict tm)
23{
24 return __gmtime_r(t, tm);
25}
26#endif
Note: See TracBrowser for help on using the repository browser.