Home | History | Annotate | Line # | Download | only in string
strlcpy.S revision 1.4.2.3
      1 /* $NetBSD: strlcpy.S,v 1.4.2.3 2014/05/22 11:26:28 yamt Exp $ */
      2 
      3 #define STRLCPY
      4 
      5 #if defined(_STANDALONE)
      6 #if defined(__thumb__)
      7 #include "strcpy_thumb.S"
      8 #else
      9 #include "strcpy_naive.S"
     10 #endif
     11 #else
     12 #include "strcpy_arm.S"
     13 #endif
     14