diff --git a/lib/utils.c b/lib/utils.c index 9378713..a076d82 100644 --- a/lib/utils.c +++ b/lib/utils.c @@ -25,6 +25,10 @@ * OTHER DEALINGS IN THE SOFTWARE. */ +#include "lib_common.h" + +#include "libdeflate.h" + #ifdef FREESTANDING # define malloc NULL # define free NULL @@ -32,10 +36,6 @@ # include #endif -#include "lib_common.h" - -#include "libdeflate.h" - static void *(*libdeflate_malloc_func)(size_t) = malloc; static void (*libdeflate_free_func)(void *) = free;