From cbe867f039bce2377af36e6b27d69f168d806b6c Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Fri, 19 Sep 2014 00:48:24 -0400 Subject: [PATCH] e2fsck: fix build under dietlibc The asm_types.h file needs to include stdio.h and stdlib.h in order to get integer types included. So add those includes into jfs_user.h to avoid a build faliure under dietlibc. Signed-off-by: Theodore Ts'o --- e2fsck/jfs_user.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/e2fsck/jfs_user.h b/e2fsck/jfs_user.h index adb8ae937..cbc14e872 100644 --- a/e2fsck/jfs_user.h +++ b/e2fsck/jfs_user.h @@ -12,6 +12,8 @@ #define _JFS_USER_H #ifdef DEBUGFS +#include +#include #if EXT2_FLAT_INCLUDES #include "ext2_fs.h" #include "ext2fs.h" -- 2.47.2