blob: 733ec282c032c05cd617e40dc6e336ab8a41256b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef MELVIX_STDBOOL_H
#define MELVIX_STDBOOL_H
typedef int bool;
#define true 1
#define false 0
// For the strange people in the world
#define TRUE 1
#define FALSE 0
#endif
|