diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-11-14 07:39:16 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-11-14 07:39:16 +0000 |
commit | c4990c6859a4caab9710a07a0c9052c57a1d11d4 (patch) | |
tree | a14d0eb6f1f3230cd0b7faea1913d30c6e0a126d /libc/sysdeps/linux | |
parent | d97a5212324581ab5555cebe9e2abd23da6fa9c1 (diff) |
Make it obvious that dtype is disabled
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/powerpc/bits/dirent.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/powerpc/bits/dirent.h b/libc/sysdeps/linux/powerpc/bits/dirent.h index 81562a8c4..a2936a7c5 100644 --- a/libc/sysdeps/linux/powerpc/bits/dirent.h +++ b/libc/sysdeps/linux/powerpc/bits/dirent.h @@ -40,6 +40,7 @@ struct dirent __off64_t d_off; #endif unsigned short int d_reclen; + //unsigned char d_type; char d_name[256]; /* We must not include limits.h! */ }; @@ -49,7 +50,7 @@ struct dirent64 __ino64_t d_ino; __off64_t d_off; unsigned short int d_reclen; - unsigned char d_type; + //unsigned char d_type; char d_name[256]; /* We must not include limits.h! */ }; #endif |