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

View File

@ -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];