ladybird/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

17 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