X-Git-Url: https://git.wh0rd.org/?p=dump.git;a=blobdiff_plain;f=compat%2Finclude%2Fbsdcompat.h;h=8c367748384dac4078d2ed32816ae8225c07676a;hp=ede26408f2429c4f7471df6413fe8d58e9906f78;hb=fa58b58da39e4a6c96e34734539d3169dbdf4210;hpb=3072400e170260407c3739f5c2255136f3e55a04 diff --git a/compat/include/bsdcompat.h b/compat/include/bsdcompat.h index ede2640..8c36774 100644 --- a/compat/include/bsdcompat.h +++ b/compat/include/bsdcompat.h @@ -4,7 +4,7 @@ * Remy Card , 1994-1997 * Stelian Pop , 1999 * - * $Id: bsdcompat.h,v 1.6 1999/10/13 09:57:18 stelian Exp $ + * $Id: bsdcompat.h,v 1.7 1999/10/22 18:12:32 tiniou Exp $ */ #include @@ -113,6 +113,20 @@ struct dinode { #define MAXNAMLEN 255 #endif +/* + * For old libc. + */ +#ifndef DT_UNKNOWN +#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 +#endif + struct direct { __u32 d_ino; __u16 d_reclen;