Employ stdbool.h, add stub wchar.h
This commit is contained in:
parent
3d3a30e200
commit
4506584c48
|
@ -51,11 +51,11 @@ static_assert(sizeof(uint64_t) == 8);
|
||||||
*/
|
*/
|
||||||
#define NULL 0
|
#define NULL 0
|
||||||
|
|
||||||
#ifndef __cplusplus
|
|
||||||
/**
|
/**
|
||||||
* Boolean type
|
* Boolean type
|
||||||
*/
|
*/
|
||||||
typedef enum { false = 0, true } bool;
|
#ifndef __cplusplus
|
||||||
|
#include <stdbool.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
#pragma once
|
Loading…
Reference in New Issue