2013-12-15 09:09:20 +01:00
|
|
|
#ifndef _DIRENT_H_
|
|
|
|
#define _DIRENT_H_
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2016-09-27 22:37:49 +02:00
|
|
|
#include <sys/cdefs.h>
|
2013-12-15 09:09:20 +01:00
|
|
|
#include <sys/dirent.h>
|
|
|
|
|
2016-09-27 22:37:49 +02:00
|
|
|
#if !defined(MAXNAMLEN) && __BSD_VISIBLE
|
2013-12-15 09:09:20 +01:00
|
|
|
#define MAXNAMLEN 1024
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /*_DIRENT_H_*/
|