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
Drop main() prototype. Syncs with NetBSD-8
[minix.git]
/
common
/
lib
/
libc
/
arch
/
arm
/
string
/
strcpy.S
blob
9585c97a16128b7c31d3e4efa45a15f3735f8dd0
1
/* $NetBSD: strcpy.S,v 1.5 2013/08/20 21:35:24 matt Exp $ */
2
3
#if defined(_STANDALONE)
4
#ifdef __thumb__
5
#include "strcpy_thumb.S"
6
#else
7
#include "strcpy_naive.S"
8
#endif
9
#else
10
#include "strcpy_arm.S"
11
#endif