You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
175 B

#ifndef _SYS_DIRENT_H
#define _SYS_DIRENT_H
#include <limits.h>
struct dirent {
long d_ino;
off_t d_off;
unsigned short d_reclen;
char d_name[NAME_MAX+1];
};
#endif