aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/stdbool.h
blob: 337ca9bbbeb424c017e0712c352bc6d9d5ca92bb (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