summaryrefslogtreecommitdiffstats
path: root/src/cpu/x86/mirror_payload.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2019-06-23 06:55:41 +0200
committerPatrick Georgi <pgeorgi@google.com>2019-10-28 11:57:23 +0000
commit845652b8bbaeca8373bcf574e12e7d4e406b72e9 (patch)
treee4d3c9cd1cb12ae13aef9a07d5bb86d4b0468b83 /src/cpu/x86/mirror_payload.c
parent400f9ca2613297b3034d96286eeeb009a1eb2ac0 (diff)
downloadcoreboot-845652b8bbaeca8373bcf574e12e7d4e406b72e9.tar.gz
coreboot-845652b8bbaeca8373bcf574e12e7d4e406b72e9.tar.bz2
coreboot-845652b8bbaeca8373bcf574e12e7d4e406b72e9.zip
src/cpu: Use 'include <stdlib.h>' when appropriate
Also: add some missing includes spotted by Jenkins. Including <types.h>, is supposed to provide stdint and stddef. Change-Id: I7bd999b59d1c0bdfa5999bf5805576f94c9a2390 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33680 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/cpu/x86/mirror_payload.c')
-rw-r--r--src/cpu/x86/mirror_payload.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cpu/x86/mirror_payload.c b/src/cpu/x86/mirror_payload.c
index 9dec8dbc6849..9987347f330d 100644
--- a/src/cpu/x86/mirror_payload.c
+++ b/src/cpu/x86/mirror_payload.c
@@ -11,13 +11,12 @@
* GNU General Public License for more details.
*/
-#include <stdint.h>
-#include <stdlib.h>
#include <string.h>
#include <commonlib/helpers.h>
#include <console/console.h>
#include <bootmem.h>
#include <program_loading.h>
+#include <types.h>
void mirror_payload(struct prog *payload)
{