lib/malloc.c: Remove pre-proc guard around include

Guards around #includes only hide deeper issues.

Change-Id: I0a356360eb3919910a980966213a2c53e99e77eb
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/7424
Reviewed-by: Marc Jones <marc.jones@se-eng.com>
Tested-by: build bot (Jenkins)
This commit is contained in:
Edward O'Callaghan 2014-11-11 13:16:32 +11:00
parent fd9defc0ca
commit 129e2f3af3
1 changed files with 0 additions and 2 deletions

View File

@ -1,8 +1,6 @@
#include <stdlib.h>
#include <console/console.h>
#ifdef __SMM__
#include <cpu/x86/smm.h>
#endif
#if CONFIG_DEBUG_MALLOC
#define MALLOCDBG(x...) printk(BIOS_SPEW, x)