Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / src / lib / support / CHIPPlatformMemory.h
1 /*
2  *
3  *    Copyright (c) 2020 Project CHIP Authors
4  *    All rights reserved.
5  *
6  *    Licensed under the Apache License, Version 2.0 (the "License");
7  *    you may not use this file except in compliance with the License.
8  *    You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *    Unless required by applicable law or agreed to in writing, software
13  *    distributed under the License is distributed on an "AS IS" BASIS,
14  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *    See the License for the specific language governing permissions and
16  *    limitations under the License.
17  */
18
19 /**
20  *    @file
21  *      This file provides a C wrapper over CHIPMem.h, intended to be used only
22  *      by platform or legacy code. See that file for documentation.
23  */
24
25 #ifndef CHIP_PLATFORM_MEMORY_H
26 #define CHIP_PLATFORM_MEMORY_H
27
28 #include <stdbool.h>
29 #include <stdlib.h>
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 extern int CHIPPlatformMemoryInit(void * buf, size_t bufSize);
36 extern void CHIPPlatformMemoryShutdown();
37 extern void * CHIPPlatformMemoryAlloc(size_t size);
38 extern void * CHIPPlatformMemoryCalloc(size_t num, size_t size);
39 extern void * CHIPPlatformMemoryRealloc(void * p, size_t size);
40 extern void CHIPPlatformMemoryFree(void * p);
41
42 #ifdef __cplusplus
43 } // extern "C"
44 #endif
45
46 #endif // CHIP_PLATFORM_MEMORY_H