Apple and BSD don't need malloc.h
This commit is contained in:
parent
d6346365c3
commit
8eb2375799
|
@ -33,9 +33,13 @@
|
|||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#include <stdint.h>
|
||||
#include <malloc.h>
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
// Both OS X and FreeBSD don't need malloc.h
|
||||
#if !defined(__APPLE__) && !defined(__FreeBSD__)
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
|
||||
//#define TEST_ORIGINAL
|
||||
//#define VERBOSE
|
||||
|
||||
|
|
Loading…
Reference in New Issue