ChangeLog: Added the bugfix with `operating_mode'.
[collectd.git] / src / libping / setup.h
1 #ifndef SETUP_H
2 #define SETUP_H
3
4 #ifdef HAVE_SYS_TIMES_H
5 # include <sys/times.h>
6 #endif /*HAVE_SYS_TIMES_H*/
7 #if TIME_WITH_SYS_TIME
8 # include <sys/time.h>
9 # include <time.h>
10 #else
11 # if HAVE_SYS_TIME_H
12 #  include <sys/time.h>
13 # else
14 #  include <time.h>
15 # endif
16 #endif /*TIME_WITH_SYS_TIME*/
17
18 #ifndef  TRUE
19 # define TRUE           1
20 #endif /*TRUE*/
21 #ifndef  FALSE
22 # define FALSE          0 
23 #endif /*FALSE*/
24
25 #ifndef  EXIT_SUCCESS
26 # define EXIT_SUCCESS   0
27 #endif /*EXIT_SUCESS*/
28 #ifndef  EXIT_FAILURE
29 # define EXIT_FAILURE   1
30 #endif /*EXIT_FAILURE*/ 
31
32 #endif/*SETUP_H*/