wifi-tally_Oostendam/nodemcu-firmware/sdk-overrides/include/ets_sys.h
Eljakim Herrewijnen 50b5fc1824 Initial commit
2021-09-27 21:52:27 +02:00

19 lines
420 B
C

#ifndef SDK_OVERRIDES_INCLUDE_ETS_SYS_H_
#define SDK_OVERRIDES_INCLUDE_ETS_SYS_H_
#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
#include_next "ets_sys.h"
#include <stdarg.h>
int ets_sprintf(char *str, const char *format, ...) __attribute__ ((format (printf, 2, 3)));
int ets_vsprintf (char *d, const char *s, va_list ap);
extern ETSTimer *timer_list;
#endif /* SDK_OVERRIDES_INCLUDE_ETS_SYS_H_ */