Merge branch 'bugfix/newlib_dirent_decls_4.3' into 'release/v4.3'

newlib: add C++ guards to the platform-specific dirent.h  (backport 4.3)

See merge request espressif/esp-idf!14621
This commit is contained in:
Ivan Grokhotkov 2021-09-09 18:46:58 +00:00
commit 746f2e2d49
2 changed files with 10 additions and 3 deletions

View File

@ -19,11 +19,16 @@
/**
* This header file provides POSIX-compatible definitions of directory
* access functions and related data types.
* access data types. Starting with newlib 3.3, related functions are defined
* in 'dirent.h' bundled with newlib.
* See http://pubs.opengroup.org/onlinepubs/7908799/xsh/dirent.h.html
* for reference.
*/
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Opaque directory structure
*/
@ -57,3 +62,7 @@ void seekdir(DIR* pdir, long loc);
void rewinddir(DIR* pdir);
int closedir(DIR* pdir);
int readdir_r(DIR* pdir, struct dirent* entry, struct dirent** out_dirent);
#ifdef __cplusplus
}
#endif

View File

@ -34,8 +34,6 @@ components/lwip/port/esp32/include/arch/cc.h
components/lwip/port/esp32/include/debug/lwip_debug.h
components/lwip/port/esp32/include/arch/cc.h
components/vfs/include/sys/dirent.h
components/esp_wifi/esp32/include/phy_init_data.h
components/spi_flash/include/spi_flash_chip_issi.h