blob: f2da280567334c0c0d6e329374a5530bd9171127 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* 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) {}
void aws_cal_platform_thread_clean_up(void) {}
|