1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-15 19:22:45 +03:00

revert some changes that were wrong

This commit is contained in:
ficeto
2015-05-06 20:54:56 +03:00
parent 9b5b323131
commit c71f198ac2
3 changed files with 28 additions and 37 deletions

View File

@@ -9,17 +9,10 @@
#include <stdbool.h>
#include <stdarg.h>
typedef unsigned char uint8_t;
typedef signed char sint8_t;
typedef signed char int8_t;
typedef unsigned short uint16_t;
typedef signed short sint16_t;
typedef signed short int16_t;
typedef unsigned long uint32_t;
typedef signed long sint32_t;
typedef signed long int32_t;
typedef signed long long sint64_t;
typedef unsigned long long uint64_t;
typedef unsigned long long u_int64_t;
typedef float real32_t;
typedef double real64_t;
@@ -47,8 +40,6 @@ typedef double real64;
#define __le16 u16
typedef unsigned int size_t;
#define __packed __attribute__((packed))
#define LOCAL static