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:
Johny Mattsson 2015-10-01 15:10:42 +10:00
parent c674d191e4
commit d8ba7d5bd8
1 changed files with 7 additions and 0 deletions

View File

@ -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