malloc.h is linux specific and should NOT be used. Also one file was missing the corresponding include

This commit is contained in:
Morten Delenk
2016-08-27 18:57:32 +02:00
parent 4d073a5223
commit 6ba3a12dac
2 changed files with 3 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sstream>
@@ -123,4 +124,4 @@ u8* lz11_compress(u8* input, u32 inputSize, u32* size) {
*size = (u32) compressedLength;
return buf;
}
}