mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-17 01:51:58 -04:00
10 lines
224 B
ArmAsm
10 lines
224 B
ArmAsm
/* $NetBSD: strlen.S,v 1.4 2013/08/20 08:07:30 matt Exp $ */
|
|
|
|
#include <arm/cdefs.h>
|
|
|
|
#if defined(_STANDALONE) || (defined(__thumb__) && !defined(_ARM_ARCH_T2))
|
|
#include "strlen_naive.S"
|
|
#else
|
|
#include "strlen_arm.S"
|
|
#endif
|