aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/stdbool.h
blob: b445c80662004e472776bac3f547a45be9004fad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef MELVIX_STDBOOL_H
#define MELVIX_STDBOOL_H

#define true 1
#define false 0

// For the strange people in the world
#define TRUE 1
#define FALSE 0

#endif