File: time.h

package info (click to toggle)
fdclone 3.01j-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,804 kB
  • sloc: ansic: 100,952; makefile: 4,507; sh: 2,230; sed: 232
file content (15 lines) | stat: -rw-r--r-- 350 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 *	time.h
 *
 *	definitions & function prototype declarations for "time.c"
 */

#if	(GETTODARGS == 1)
#define	Xgettimeofday(tv, tz)	gettimeofday(tv)
#else
#define	Xgettimeofday(tv, tz)	gettimeofday(tv, tz)
#endif

extern time_t Xtime __P_((time_t *));
extern time_t Xtimegm __P_((CONST struct tm *));
extern time_t Xtimelocal __P_((struct tm *));