From 107d51a25da8f91437d5c66283b420844ee74fbf Mon Sep 17 00:00:00 2001 From: Caveh Jalali Date: Wed, 9 Oct 2019 23:40:38 -0700 Subject: panic.h: include required stdint.h panic.h uses types from stdint.h, so it should really include it by default. also, order standard header files ahead of project specific header files. BRANCH=none BUG=b:142031466 TEST=make buildall passes Change-Id: I8ac6d42f1da412bd3ce20df2838b8e420ad25e52 Signed-off-by: Caveh Jalali Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1855643 Tested-by: Caveh Jalali Commit-Queue: Caveh Jalali Reviewed-by: Daisuke Nojiri --- include/panic.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/panic.h b/include/panic.h index 80a8fe1125..41b941d1ef 100644 --- a/include/panic.h +++ b/include/panic.h @@ -9,9 +9,10 @@ #ifndef __CROS_EC_PANIC_H #define __CROS_EC_PANIC_H -#include "software_panic.h" - #include +#include + +#include "software_panic.h" #ifdef __cplusplus extern "C" { -- cgit v1.2.1