From 54c6afb460642e1069a9d3e9f9ebeb7cad2cd8ba Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 3 Jan 2000 20:27:13 +0000 Subject: 2000-01-03 Roland McGrath * file_io.h: Include "../ext2fs/ext2_fs.h" instead of "ext2_fs.h". * ext2_file_io.c (search_directory): Use `struct ext2_dir_entry_2' in place of `struct ext2_dir_entry', so as to grok newer dir formats. * ext2_fs.h: File removed. * Makefile (LCLHDRS): Remove it from the list. * ffs_compat.c (EXT2_INODES_PER_BLOCK): New macro, no longer in ext2_fs.h. --- serverboot/file_io.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'serverboot/file_io.h') diff --git a/serverboot/file_io.h b/serverboot/file_io.h index 8a1a6e34..323e4e9a 100644 --- a/serverboot/file_io.h +++ b/serverboot/file_io.h @@ -34,11 +34,20 @@ #include #include +#include #include +/* Types used by the ext2 header files. */ +typedef u_int32_t __u32; +typedef int32_t __s32; +typedef u_int16_t __u16; +typedef int16_t __s16; +typedef u_int8_t __u8; +typedef int8_t __s8; + #include #include "minix_fs.h" -#include "ext2_fs.h" +#include "../ext2fs/ext2_fs.h" /* snarf stolen linux header from ext2fs */ #include "disk_inode.h" #define BSD_FFS 0 -- cgit v1.2.3