mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-08-06 15:15:15 +08:00
add putchar and puts, related lib has been pushed to esp_iot_rtos_sdk_lib.
reported by latyas.
This commit is contained in:
@ -37,6 +37,8 @@ void srand(unsigned int i);
|
||||
int printf(const char *format, ...);
|
||||
int sprintf(char *out, const char *format, ...);
|
||||
int snprintf(char *buf, unsigned int count, const char *format, ...);
|
||||
int puts(const char *str);
|
||||
int putchar(int c);
|
||||
|
||||
void *malloc(size_t n);
|
||||
void free(void *p);
|
||||
|
Reference in New Issue
Block a user