1 /*
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (C) 2023 embedded brains GmbH & Co. KG
5  */
6 
7 #include <picolibc.h>
8 
9 #if (defined (__OPTIMIZE_SIZE__) || defined (PREFER_SIZE_OVER_SPEED)) || !defined(__LP64__) || !defined(__ARM_NEON)
10 #include "../../string/memrchr.c"
11 #else
12 /* See memrchr.S */
13 #endif
14