aboutsummaryrefslogtreecommitdiff
path: root/networking/include/networking.h
blob: 297dd4bfab0234ceabf663f5e39552b1e08f63ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Public API.
 *
 * Copyright (c) 2020, Arm Limited.
 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
 */

unsigned short __chksum (const void *, unsigned int);
#if __aarch64__ && __ARM_NEON
unsigned short __chksum_aarch64_simd (const void *, unsigned int);
#endif
#if __arm__ && __ARM_NEON
unsigned short __chksum_arm_simd (const void *, unsigned int);
#endif