.
[gnulib.git] / lib / gtod.h
1 #ifndef GTOD_H
2 # define GTOD_H 1
3
4 # ifndef PARAMS
5 #  if defined PROTOTYPES || (defined __STDC__ && __STDC__)
6 #   define PARAMS(Args) Args
7 #  else
8 #   define PARAMS(Args) ()
9 #  endif
10 # endif
11
12 void GTOD_init PARAMS ((void));
13
14 /* This is a no-op on compliant systems.  */
15 # if GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER
16 #  define GETTIMEOFDAY_INIT() GTOD_init ()
17 # else
18 #  define GETTIMEOFDAY_INIT() /* empty */
19 # endif
20
21 #endif