コード例 #1
0
ファイル: time64.c プロジェクト: code0100fun/rubinius
time64_t timelocal64(struct tm64* tm64) {
#if defined( __OpenBSD__) || defined(__FreeBSD__)
  return timestamp64(timelocal, tm64);
#else
  return timestamp64(mktime, tm64);
#endif
}
コード例 #2
0
ファイル: time64.c プロジェクト: DanielVartanov/rubinius
time64_t timelocal64(struct tm64* tm64) {
#ifdef __OpenBSD__
  return timestamp64(timelocal, tm64);
#else
  return timestamp64(mktime, tm64);
#endif
}
コード例 #3
0
ファイル: time64.c プロジェクト: code0100fun/rubinius
time64_t timegm64(struct tm64* tm64) {
  return timestamp64(timegm, tm64);
}
コード例 #4
0
ファイル: time64.c プロジェクト: code0100fun/rubinius
time64_t mktime64(struct tm64* tm64) {
  return timestamp64(mktime, tm64);
}