lib/lzma.c: Use header over .c include

Change-Id: I904eb1703eaf4f8de1b4ec443173686c7985be12
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/7427
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
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 12:27:06 +11:00
parent cdabc880e1
commit cd31afdc3c
2 changed files with 4 additions and 5 deletions

View File

@ -9,11 +9,12 @@
*
*/
#include "lzmadecode.c"
#include <console/console.h>
#include <string.h>
#include <lib.h>
#include "lzmadecode.h"
unsigned long ulzma(unsigned char * src, unsigned char * dst)
{
unsigned char properties[LZMA_PROPERTIES_SIZE];