summaryrefslogtreecommitdiff
path: root/defs.h
blob: e89cbec2b0054a55098e47a47204fe8d51032e17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef    __DEFS_H
#define    __DEFS_H


#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif

#ifndef PATH_MAX
#define PATH_MAX 4096
#endif

#ifndef PATH_SEP
#define PATH_SEP ':'
#endif


#ifdef __cplusplus
extern "C" {
#endif



#ifdef __cplusplus
}
#endif

#endif  /* __DEFS_H */