forked from KolibriOS/kolibrios
e6fe081453
git-svn-id: svn://kolibrios.org@6536 a494cfbc-eb01-0410-851d-a64ba20cac60
17 lines
263 B
C
17 lines
263 B
C
#ifndef _DIRENT_H_
|
|
#define _DIRENT_H_
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#include <sys/cdefs.h>
|
|
#include <sys/dirent.h>
|
|
|
|
#if !defined(MAXNAMLEN) && __BSD_VISIBLE
|
|
#define MAXNAMLEN 1024
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /*_DIRENT_H_*/
|