ef546fc369
Obtained from [1] at the request of Nerijus Baliunas [2]. [1] https://web.archive.org/web/20110720231607/http://www.fcoutant.freesurf.fr/download/wmmenu-1.2.tar.gz [2] http://lists.windowmaker.org/dev/msg07991.html
17 lines
190 B
C
17 lines
190 B
C
#ifndef types_h_
|
|
#define types_h_
|
|
|
|
typedef int bool ;
|
|
#ifndef false
|
|
#define false (0)
|
|
#endif
|
|
#ifndef true
|
|
#define true (1)
|
|
#endif
|
|
|
|
#ifndef EOS
|
|
#define EOS '\0'
|
|
#endif
|
|
|
|
#endif /* types_h_ */
|