aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/machine/aarch64/memrchr-stub.c
blob: 48f13bedc8b735cbe3325df4b4b0ca6009b4bea8 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * Copyright (C) 2023 embedded brains GmbH & Co. KG
 */

#if defined (__OPTIMIZE_SIZE__) || defined (PREFER_SIZE_OVER_SPEED)
#include "../../string/memrchr.c"
#else
/* See memrchr.S */
#endif