From: Theodore Ts'o Date: Fri, 19 Sep 2014 04:48:24 +0000 (-0400) Subject: e2fsck: fix build under dietlibc X-Git-Tag: v1.43-WIP-2015-05-18~174 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbe867f039bce2377af36e6b27d69f168d806b6c;p=thirdparty%2Fe2fsprogs.git 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 --- 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"