Only use _mm_malloc when compiling netlist standalone. (nw)

This commit is contained in:
couriersud 2015-05-25 01:04:35 +02:00
parent 74942bf908
commit 12c9e541f3

View File

@ -5,6 +5,9 @@
*
*/
#include "pconfig.h"
#if (PSTANDALONE)
#include <stdlib.h>
#include <xmmintrin.h>
@ -20,3 +23,4 @@ void pfree_raw(void *p)
//free(p);
_mm_free(p);
}
#endif