summaryrefslogtreecommitdiff
path: root/Libraries/LibC/stdbool.h
blob: 6b4e36f93b6d4b142c81defa5f07afcbc3d4770a (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