ets_sys.h 368 B

1234567891011121314
  1. #ifndef SDK_OVERRIDES_INCLUDE_ETS_SYS_H_
  2. #define SDK_OVERRIDES_INCLUDE_ETS_SYS_H_
  3. #include_next "ets_sys.h"
  4. #include "../libc/c_stdarg.h"
  5. int ets_sprintf(char *str, const char *format, ...) __attribute__ ((format (printf, 2, 3)));
  6. int ets_vsprintf (char *d, const char *s, va_list ap);
  7. extern ETSTimer *timer_list;
  8. #endif /* SDK_OVERRIDES_INCLUDE_ETS_SYS_H_ */