summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2020-07-08 09:47:38 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2020-07-14 20:28:09 +0200
commitb7f4c813f1283e2e33264f6985bd1f170670f621 (patch)
tree2439a6b6dc16b5756a55a2694951f5a1f8380e7b
parent48a494049f5d18131e8048db707d57f02cb8c7af (diff)
downloadbarebox-b7f4c813f1283e2e33264f6985bd1f170670f621.tar.gz
barebox-b7f4c813f1283e2e33264f6985bd1f170670f621.tar.xz
commands: dhrystone: remove unneeded and out-of-place <stdbool.h>
Our bool definitions come out of <linux/types.h>. <stdbool.h> shouldn't be used for normal barebox code. We already include <linux/types.h> by means of <common.h> above. So drop the <stdbool.h> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--commands/dhrystone.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/commands/dhrystone.c b/commands/dhrystone.c
index c839b0c043..154910e5d0 100644
--- a/commands/dhrystone.c
+++ b/commands/dhrystone.c
@@ -17,7 +17,6 @@
#include <clock.h>
#include <asm-generic/div64.h>
#include <malloc.h>
-#include <stdbool.h>
#include <stdio.h> /* for strcpy, strcmp */
enum idents {ident_1, ident_2, ident_3, ident_4, ident_5};