mirror of
https://github.com/opencv/opencv.git
synced 2024-12-18 19:38:02 +08:00
11 lines
211 B
C++
11 lines
211 B
C++
#include "../precomp.hpp"
|
|
|
|
#if defined(TH_DISABLE_HEAP_TRACKING)
|
|
#elif (defined(__unix) || defined(_WIN32))
|
|
#include <malloc.h>
|
|
#elif defined(__APPLE__)
|
|
#include <malloc/malloc.h>
|
|
#endif
|
|
|
|
#include "THGeneral.h"
|