1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 23:25:08 +00:00
serenity/LibC/stdbool.h
Andreas Kling e0c1541847 Compat work towards making bash-5.0 build with less patches.
Hacked implementations of sigsetjmp() and siglongjmp(). I didn't know about
these APIs until just now, but I hope I got them right.
2019-02-26 14:05:28 +01:00

16 lines
185 B
C

#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