Lines Matching refs:mktime
20 __RCSID("$NetBSD: mktime.c,v 1.2 2016/05/17 14:00:09 christos Exp $");
24 mktime. */
48 /* Make it work even if the system's libc has its own mktime routine. */
49 # define mktime my_mktime
508 mktime (struct tm *tp)
511 /* POSIX.1 8.1.1 requires that whenever mktime() is called, the
521 weak_alias (mktime, timelocal)
525 libc_hidden_def (mktime)
562 printf ("mktime (");
594 tl = mktime (&tmk);
601 printf ("mktime returns %ld == ", (long int) tl);
619 tk = mktime (&tmk);
667 compile-command: "gcc -DDEBUG -Wall -W -O -g mktime.c -o mktime"