17 lines
225 B
Plaintext
17 lines
225 B
Plaintext
#ifndef __cplusplus
|
|
#error "Must only use this header with C++"
|
|
#endif
|
|
|
|
#ifndef _CSTDBOOL
|
|
#define _CSTDBOOL 1
|
|
|
|
namespace std {
|
|
|
|
#define __LIBC_GUARDLESS_INCLUDE
|
|
#include <stdbool.h>
|
|
#undef __LIBC_GUARDLESS_INCLUDE
|
|
|
|
}
|
|
|
|
#endif
|