mirror of
https://github.com/espressif/esp-idf.git
synced 2025-12-27 05:37:32 +00:00
17 lines
292 B
C
17 lines
292 B
C
/*
|
|
* 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>
|
|
#endif
|
|
|
|
#if CONFIG_LIBC_PICOLIBC_NEWLIB_COMPATIBILITY
|
|
#include <stdio-bufio.h>
|
|
#endif
|