repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove building with NOCRYPTO option
[minix.git]
/
common
/
lib
/
libc
/
arch
/
arm
/
string
/
strlen.S
blob
034289bd3f3f336e2bfdd082744f818252f750e2
1
/* $NetBSD: strlen.S,v 1.4 2013/08/20 08:07:30 matt Exp $ */
2
3
#include <arm/cdefs.h>
4
5
#if defined(_STANDALONE) || (defined(__thumb__) && !defined(_ARM_ARCH_T2))
6
#include "strlen_naive.S"
7
#else
8
#include "strlen_arm.S"
9
#endif