mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-16 17:41:31 -04:00
12 lines
206 B
ArmAsm
12 lines
206 B
ArmAsm
/* $NetBSD: strcpy.S,v 1.5 2013/08/20 21:35:24 matt Exp $ */
|
|
|
|
#if defined(_STANDALONE)
|
|
#ifdef __thumb__
|
|
#include "strcpy_thumb.S"
|
|
#else
|
|
#include "strcpy_naive.S"
|
|
#endif
|
|
#else
|
|
#include "strcpy_arm.S"
|
|
#endif
|