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.

17 lines
195 B

#ifndef _SYS_DIR_H
#define _SYS_DIR_H
#include <limits.h>
#include <sys/types.h>
#ifndef DIRSIZ
#define DIRSIZ NAME_MAX
#endif
struct direct {
ino_t d_ino;
char d_name[NAME_MAX];
};
#endif