11 lines
138 B
C
11 lines
138 B
C
/* Minimal boolean type for C89 compatibility */
|
|
#ifndef BOOL_H
|
|
#define BOOL_H
|
|
|
|
typedef int bool;
|
|
|
|
#define true 1
|
|
#define false 0
|
|
|
|
#endif
|