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
/
strlcat.S
blob
2828e4181be8a9cb87c8f13d48417548dbc504ad
1
/* $NetBSD: strlcat.S,v 1.2 2013/08/20 21:08:54 matt Exp $ */
2
3
#include <machine/asm.h>
4
5
#ifdef _LIBC
6
WEAK_ALIAS(strlcat, _strlcat)
7
#include "namespace.h"
8
#endif
9
10
#if defined(_STANDALONE) && 0 /* arm version is always smaller */
11
#include "strlcat_naive.S"
12
#else
13
#include "strlcat_arm.S"
14
#endif