1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-26 07:02:15 +03:00

add includes for <stddef.h> <stdarg.h> <stdio.h> to Arduino.h

add strtok
This commit is contained in:
Markus Sattler
2015-04-17 12:19:58 +02:00
parent 6cf87708c5
commit b6ea1e45af
2 changed files with 12 additions and 3 deletions

View File

@ -20,18 +20,23 @@
#ifndef Arduino_h
#define Arduino_h
#ifdef __cplusplus
extern "C" {
#endif
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include "binary.h"
#include "pgmspace.h"
#ifdef __cplusplus
extern "C" {
#endif
void yield(void);