1
0
Fork 0
mirror of https://git.wownero.com/wownero/wownero.git synced 2024-08-15 01:03:23 +00:00

Merge pull request 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