mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-10 14:39:47 -04:00
14 lines
230 B
ArmAsm
14 lines
230 B
ArmAsm
/* $NetBSD: strncpy.S,v 1.3 2013/08/20 21:35:24 matt Exp $ */
|
|
|
|
#define STRNCPY
|
|
|
|
#if defined(_STANDALONE)
|
|
#if defined(__thumb__)
|
|
#include "strcpy_thumb.S"
|
|
#else
|
|
#include "strcpy_naive.S"
|
|
#endif
|
|
#else
|
|
#include "strcpy_arm.S"
|
|
#endif
|