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
/
strnlen.S
blob
21fbf2737583fd4207425833c33144a513a30b43
1
/* $NetBSD: strnlen.S,v 1.3 2013/08/20 08:08:59 matt Exp $ */
2
3
#include <arm/cdefs.h> /* for _ARM_ARCH_T2 */
4
5
#define STRNLEN
6
7
#if defined(_STANDALONE) || (defined(__thumb__) && !defined(_ARM_ARCH_T2))
8
#include "strlen_naive.S"
9
#else
10
#include "strlen_arm.S"
11
#endif