summaryrefslogtreecommitdiff
path: root/LibC/stdbool.h
blob: 96d0d4dd92fe8df07fef6232d0dcc092d850757e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#ifndef __cplusplus

#include <sys/cdefs.h>

__BEGIN_DECLS

#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_Defined 1

__END_DECLS

#endif