diff options
author | Idwer Vollering <vidwer@gmail.com> | 2020-12-30 00:01:59 +0100 |
---|---|---|
committer | Idwer Vollering <vidwer@gmail.com> | 2020-12-31 16:06:58 +0000 |
commit | 93df1d9cfaef526bf5a8f18cb619623d9bd82293 (patch) | |
tree | 0840565d85d71bd1d897eb76dde510309993ec86 /util/amdfwtool/amdfwtool.c | |
parent | 2c626f332b938caabb38f85db5cafb2f502b5a52 (diff) |
util/amdfwtool: portability fixes for FreeBSD
Add the stdint.h header, and drop the GLIBC section from amdfwtool.h to build this tool on FreeBSD as well as Linux.
Signed-off-by: Idwer Vollering <vidwer@gmail.com>
Change-Id: I295fd308b0f5e2902931f02c9455823a614976de
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48977
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/amdfwtool/amdfwtool.c')
-rw-r--r-- | util/amdfwtool/amdfwtool.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/amdfwtool/amdfwtool.c b/util/amdfwtool/amdfwtool.c index f167e5ed1a..8b54876db7 100644 --- a/util/amdfwtool/amdfwtool.c +++ b/util/amdfwtool/amdfwtool.c @@ -57,6 +57,7 @@ #include <stdlib.h> #include <getopt.h> #include <libgen.h> +#include <stdint.h> #include "amdfwtool.h" |