From b407708461d853ea8043b9b73b3a28f9ca5efc3f Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 20 Feb 2002 22:51:25 +0000 Subject: Fix from John Rigby to fix stat() so it actually works. --- libc/sysdeps/linux/mips/bits/types.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libc/sysdeps/linux/mips/bits/types.h b/libc/sysdeps/linux/mips/bits/types.h index 141f0b29e..5ace8a8a7 100644 --- a/libc/sysdeps/linux/mips/bits/types.h +++ b/libc/sysdeps/linux/mips/bits/types.h @@ -58,7 +58,10 @@ __extension__ typedef unsigned long long int __uint64_t; #endif typedef __quad_t *__qaddr_t; -typedef __u_quad_t __dev_t; /* Type of device numbers. */ +/* changed to be more compatible with kernel */ +/*typedef __u_quad_t __dev_t;*/ /* Type of device numbers. */ +typedef __u_int __dev_t; /* Type of device numbers. */ + typedef __u_int __uid_t; /* Type of user identifications. */ typedef __u_int __gid_t; /* Type of group identifications. */ typedef __u_long __ino_t; /* Type of file serial numbers. */ -- cgit v1.2.3