mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-09 20:41:14 +00:00
feat(newlib): add picolibc support
This commit is contained in:
14
components/newlib/platform_include/stdio_ext.h
Normal file
14
components/newlib/platform_include/stdio_ext.h
Normal file
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include "sdkconfig.h"
|
||||
|
||||
#if CONFIG_LIBC_NEWLIB
|
||||
#include_next <stdio_ext.h>
|
||||
#else
|
||||
#include <stdio-bufio.h>
|
||||
#endif
|
Reference in New Issue
Block a user