X-Git-Url: https://git.wh0rd.org/?p=dump.git;a=blobdiff_plain;f=compat%2Finclude%2Fbsdcompat.h;h=89d7ae98aebb565f7d7329381bfd0f7945480066;hp=421e4cf67ee927efd409214bf11e91ec4e6b1c50;hb=ec387a1267f4cac7625cd5b6d1c1f080d39085b3;hpb=ddd2ef55b78a62c4bc3daad18bef8a90e85a2052 diff --git a/compat/include/bsdcompat.h b/compat/include/bsdcompat.h index 421e4cf..89d7ae9 100644 --- a/compat/include/bsdcompat.h +++ b/compat/include/bsdcompat.h @@ -4,10 +4,12 @@ * Remy Card , 1994-1997 * Stelian Pop , 1999 * + * $Id: bsdcompat.h,v 1.5 1999/10/11 13:31:08 stelian Exp $ */ #include #include +#include #define __dead volatile @@ -107,7 +109,9 @@ struct dinode { * This is the 4.4BSD directory entry structure */ #define DIRBLKSIZ DEV_BSIZE +#ifndef MAXNAMLEN #define MAXNAMLEN 255 +#endif struct direct { __u32 d_ino; @@ -121,19 +125,6 @@ struct direct { char d_name[MAXNAMLEN + 1]; }; -/* - * File types - */ -#define DT_UNKNOWN 0 -#define DT_FIFO 1 -#define DT_CHR 2 -#define DT_DIR 4 -#define DT_BLK 6 -#define DT_REG 8 -#define DT_LNK 10 -#define DT_SOCK 12 -#define DT_WHT 14 - /* * Convert between stat structure types and directory types. */