blob: decedcdafa2c4212abe0f7e945f32e49268f5044 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/common/allocator.h>
void aws_cal_platform_init(struct aws_allocator *allocator) {
(void)allocator;
}
void aws_cal_platform_clean_up(void) {}
|