Esempio n. 1
0
time_t
timegm (struct tm *tmp)
{
    static time_t gmtime_offset;
    tmp->tm_isdst = 0;
    return __mktime_internal (tmp, __gmtime_r, &gmtime_offset);
}
Esempio n. 2
0
__time64_t
__timegm64 (struct tm *tmp)
{
  static mktime_offset_t gmtime_offset;
  tmp->tm_isdst = 0;
  return __mktime_internal (tmp, __gmtime64_r, &gmtime_offset);
}