Employ stdbool.h, add stub wchar.h

This commit is contained in:
Michael Vines 2018-11-25 16:58:32 -08:00
parent 3d3a30e200
commit 4506584c48
2 changed files with 3 additions and 2 deletions

View File

@ -51,11 +51,11 @@ static_assert(sizeof(uint64_t) == 8);
*/
#define NULL 0
#ifndef __cplusplus
/**
* Boolean type
*/
typedef enum { false = 0, true } bool;
#ifndef __cplusplus
#include <stdbool.h>
#endif
/**

View File

@ -0,0 +1 @@
#pragma once