diff options
Diffstat (limited to 'mit-pthreads/machdep/linux-2.0/dirent.h')
-rwxr-xr-x | mit-pthreads/machdep/linux-2.0/dirent.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/mit-pthreads/machdep/linux-2.0/dirent.h b/mit-pthreads/machdep/linux-2.0/dirent.h deleted file mode 100755 index 7f783a198e0..00000000000 --- a/mit-pthreads/machdep/linux-2.0/dirent.h +++ /dev/null @@ -1,27 +0,0 @@ - -#ifndef _SYS_DIRENT_H -#define _SYS_DIRENT_H - -#include <sys/types.h> -#include <linux/limits.h> - -struct dirent { - long d_ino; - off_t d_off; - unsigned short d_reclen; - char d_name[NAME_MAX+1]; -}; - -#ifndef d_fileno -#define d_fileno d_ino -#endif - -#ifndef d_namlen -#define d_namlen d_reclen -#endif - -#ifndef MAXNAMLEN -#define MAXNAMLEN NAME_MAX -#endif - -#endif |