/** @file
Intrinsic Math Routines Wrapper Implementation for OpenSSL-based
Cryptographic Library.
Copyright (c) 2025, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include
#include
long long
__ashlti3 (
long long a,
int b
)
{
return LShiftU64 (a, b);
}
long
__lshrdi3 (
long a,
int b
)
{
return a >> b;
}