mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-06-30 20:40:59 +02:00
16 lines
234 B
C
16 lines
234 B
C
![]() |
#ifndef _DIRENT_H_
|
||
|
#define _DIRENT_H_
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
#include <sys/dirent.h>
|
||
|
|
||
|
#if !defined(MAXNAMLEN) && !defined(_POSIX_SOURCE)
|
||
|
#define MAXNAMLEN 1024
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif /*_DIRENT_H_*/
|