2015-07-15 05:09:55 +00:00
|
|
|
#ifndef _DIRENT_H_
|
|
|
|
#define _DIRENT_H_
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2017-04-13 03:52:05 +00:00
|
|
|
#include <sys/cdefs.h>
|
2015-07-15 05:09:55 +00:00
|
|
|
#include <sys/dirent.h>
|
|
|
|
|
2017-04-13 03:52:05 +00:00
|
|
|
#if !defined(MAXNAMLEN) && __BSD_VISIBLE
|
2015-07-15 05:09:55 +00:00
|
|
|
#define MAXNAMLEN 1024
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /*_DIRENT_H_*/
|