Merge pull request #112 from fluffypony/master

fixed OS X malloc.h reference
This commit is contained in:
Riccardo Spagni 2014-09-02 12:20:15 +02:00
commit 1d6372cccf

View file

@ -34,11 +34,14 @@ static const char _NR[] = {
#include <stddef.h>
#include <time.h>
#include <sys/timeb.h>
#include <malloc.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#ifndef __APPLE__
#include <malloc.h>
#endif
#ifdef WIN32
#include <process.h>
#else