2
0
mirror of https://github.com/zint/zint synced 2024-11-16 20:57:25 +13:00

Adjustment for OSX

Replaced an adjustment for compiling on OSX which I accidentally removed.
This commit is contained in:
Robin Stuart 2010-06-21 14:31:24 +01:00
parent 7e81c5ac55
commit 46d604dad7

@ -26,7 +26,11 @@
#include "reedsol.h"
#include <string.h>
#include <stdlib.h>
#include <malloc.h>
#ifdef __APPLE__
#include <sys/malloc.h>
#else
#include <malloc.h>
#endif
int maxi_codeword[144];