mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 07:31:32 +00: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_*/
|