13 lines
263 B
C
13 lines
263 B
C
#ifndef __stdbool_h__
|
|
#define __stdbool_h__
|
|
|
|
// For compatibility with SDK. Boo.
|
|
typedef unsigned char bool;
|
|
#define BOOL bool
|
|
#define true (1)
|
|
#define false (0)
|
|
#define TRUE true
|
|
#define FALSE false
|
|
|
|
#endif
|