Publishing R3
[platform/upstream/dldt.git] / inference-engine / thirdparty / ade / ade / include / memory / alloc.hpp
1 // Copyright (C) 2018 Intel Corporation
2 //
3 // SPDX-License-Identifier: Apache-2.0
4 //
5
6 #ifndef ALLOC_HPP
7 #define ALLOC_HPP
8
9 #include <cstddef> //size_t
10
11 namespace ade
12 {
13 void* aligned_alloc(std::size_t size, std::size_t alignment);
14 void aligned_free(void* ptr);
15
16 }
17
18 #endif // ALLOC_HPP