mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 02:54:54 +03:00
e0c1541847
Hacked implementations of sigsetjmp() and siglongjmp(). I didn't know about these APIs until just now, but I hope I got them right.
17 lines
185 B
C
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
|