ltp/fsstress: Add header file stdbool.h

Compilation failed on Fedora 20 because stdbool.h is not included in
xfs/platform_defs-x86_64.h or xfs/linux.h on Fedora 20.

Also, yang xiao fixed similar problem(commit 234f51ebbd) for fsx.c in
2016.2, but after that, fsstress.c started to use bool variable without
including stdbool.h file. It may fail on old linux distributions, so
fix it.

Signed-off-by: Yang Xu <xuyang2018.jy@cn.fujitsu.com>
Reviewed-by: Eryu Guan <guaneryu@gmail.com>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
This commit is contained in:
Yang Xu
2020-01-07 14:31:26 +08:00
committed by Eryu Guan
parent 6458922bb5
commit dec3ec2dff
+1
View File
@@ -8,6 +8,7 @@
#include <setjmp.h>
#include <sys/uio.h>
#include <stddef.h>
#include <stdbool.h>
#include "global.h"
#ifdef HAVE_BTRFSUTIL_H