X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=compat%2Finclude%2Fbsdcompat.h;h=8c367748384dac4078d2ed32816ae8225c07676a;hb=fa58b58da39e4a6c96e34734539d3169dbdf4210;hp=7a3b11e23edf259db31d53062f9534ea8760d032;hpb=8d4197bb9ba5bbcef21409231ed8903b0cac353a;p=dump.git diff --git a/compat/include/bsdcompat.h b/compat/include/bsdcompat.h index 7a3b11e..8c36774 100644 --- a/compat/include/bsdcompat.h +++ b/compat/include/bsdcompat.h @@ -2,8 +2,9 @@ * Ported to Linux's Second Extended File System as part of the * dump and restore backup suit * Remy Card , 1994-1997 - * Stelian Pop , 1999 + * Stelian Pop , 1999 * + * $Id: bsdcompat.h,v 1.7 1999/10/22 18:12:32 tiniou Exp $ */ #include @@ -112,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;