2001-12-01 01:26:47 +08:00
|
|
|
#ifndef _DIRENT_H_
|
|
|
|
#define _DIRENT_H_
|
2000-02-18 03:39:52 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2016-03-15 05:17:38 +08:00
|
|
|
#include <sys/cdefs.h>
|
2000-02-18 03:39:52 +08:00
|
|
|
#include <sys/dirent.h>
|
2000-11-22 07:57:25 +08:00
|
|
|
|
2016-03-15 05:17:38 +08:00
|
|
|
#if !defined(MAXNAMLEN) && __BSD_VISIBLE
|
2000-11-22 07:57:25 +08:00
|
|
|
#define MAXNAMLEN 1024
|
|
|
|
#endif
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2001-12-01 01:26:47 +08:00
|
|
|
#endif /*_DIRENT_H_*/
|