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
/
strlcpy.S
blob
83708ac4b9e1bc2dc7017e5592b8c98af258c510
1
/* $NetBSD: strlcpy.S,v 1.5 2013/08/20 21:35:24 matt Exp $ */
2
3
#define STRLCPY
4
5
#if defined(_STANDALONE)
6
#if defined(__thumb__)
7
#include "strcpy_thumb.S"
8
#else
9
#include "strcpy_naive.S"
10
#endif
11
#else
12
#include "strcpy_arm.S"
13
#endif