mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 15:45:07 +00:00
13 lines
157 B
C
13 lines
157 B
C
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
#define bool _Bool
|
|
#define true 1
|
|
#define false 0
|
|
#define __bool_true_false_are_Defined 1
|
|
|
|
__END_DECLS
|
|
|