1 1.5 matt /* $NetBSD: strlcpy.S,v 1.5 2013/08/20 21:35:24 matt Exp $ */ 2 1.1 matt 3 1.1 matt #define STRLCPY 4 1.2 matt 5 1.4 matt #if defined(_STANDALONE) 6 1.5 matt #if defined(__thumb__) 7 1.5 matt #include "strcpy_thumb.S" 8 1.5 matt #else 9 1.2 matt #include "strcpy_naive.S" 10 1.5 matt #endif 11 1.2 matt #else 12 1.2 matt #include "strcpy_arm.S" 13 1.2 matt #endif 14