HAL for canny
[platform/upstream/opencv.git] / modules / dnn / src / torch / THGeneral.cpp
1 #include "../precomp.hpp"
2 #if defined(ENABLE_TORCH_IMPORTER) && ENABLE_TORCH_IMPORTER
3
4 #if defined(TH_DISABLE_HEAP_TRACKING)
5 #elif (defined(__unix) || defined(_WIN32))
6 #include <malloc.h>
7 #elif defined(__APPLE__)
8 #include <malloc/malloc.h>
9 #endif
10
11 #include "THGeneral.h"
12
13 #endif