forked from KolibriOS/kolibrios
0a3f4b2193
git-svn-id: svn://kolibrios.org@1693 a494cfbc-eb01-0410-851d-a64ba20cac60
16 lines
249 B
C
16 lines
249 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_*/
|