Override the c_types.h to get int64_t defined properly.
I really wish they'd just used stdint.h instead of rolling their own broken stuff.
This commit is contained in:
parent
c674d191e4
commit
d8ba7d5bd8
|
@ -0,0 +1,7 @@
|
|||
#ifndef _OVERRIDE_C_TYPES_H_
|
||||
#define _OVERRIDE_C_TYPES_H_
|
||||
|
||||
#include "../../sdk/esp_iot_sdk_v1.4.0/include/c_types.h"
|
||||
typedef sint64_t int64_t;
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue