mirror of
https://github.com/rhboot/gnu-efi
synced 2026-08-26 00:26:04 -04:00
efilink: fix build with gcc 4.8
intptr_t is undefined without an include on stdint.h Fixes: - http://autobuild.buildroot.org/results/a0ca37b5ed27af445344e3ac49dc87bb17512c50 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
This commit is contained in:
parent
d34132e62f
commit
6335e5c697
1 changed files with 4 additions and 0 deletions
|
|
@ -1,6 +1,10 @@
|
|||
#ifndef _EFI_LINK_H
|
||||
#define _EFI_LINK_H
|
||||
|
||||
#if defined(__GNUC__)
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
/*++
|
||||
|
||||
Copyright (c) 1998 Intel Corporation
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue