diff options
author | Alexander Smirnov <alex@ydb.tech> | 2024-12-03 12:18:51 +0000 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2024-12-03 12:18:51 +0000 |
commit | ec1f32f19b8500d88807ecde78f48ad9fb55dc73 (patch) | |
tree | 4fcc87ab795c82ea93129912ac4ccfe8d4e64a9c /contrib/restricted/aws/aws-c-cal/source/windows/bcrypt_platform_init.c | |
parent | e04e58d6f08f0c4fb5a61c3e9fbdba48475a2c80 (diff) | |
parent | 556c8da53b8579d7aceb68fe8fa3513851464a75 (diff) | |
download | ydb-ec1f32f19b8500d88807ecde78f48ad9fb55dc73.tar.gz |
Merge branch 'rightlib' into mergelibs-241203-1217
Diffstat (limited to 'contrib/restricted/aws/aws-c-cal/source/windows/bcrypt_platform_init.c')
-rw-r--r-- | contrib/restricted/aws/aws-c-cal/source/windows/bcrypt_platform_init.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/contrib/restricted/aws/aws-c-cal/source/windows/bcrypt_platform_init.c b/contrib/restricted/aws/aws-c-cal/source/windows/bcrypt_platform_init.c new file mode 100644 index 0000000000..decedcdafa --- /dev/null +++ b/contrib/restricted/aws/aws-c-cal/source/windows/bcrypt_platform_init.c @@ -0,0 +1,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) {} |