Home | History | Annotate | Download | only in tzcode

Lines Matching full:time_t

8 #include "private.h"	/* for time_t, TYPE_INTEGRAL, and TYPE_SIGNED */
11 difftime(const time_t time1, const time_t time0)
14 ** If (sizeof (double) > sizeof (time_t)) simply convert and subtract
17 if (sizeof (double) > sizeof (time_t))
19 if (!TYPE_INTEGRAL(time_t)) {
21 ** time_t is floating.
25 if (!TYPE_SIGNED(time_t)) {
27 ** time_t is integral and unsigned.
36 ** time_t is integral and signed.
48 if (sizeof (uintmax_t) < sizeof (time_t))