Home | History | Annotate | Line # | Download | only in string
strcpy.S revision 1.5.26.2
      1 /* $NetBSD: strcpy.S,v 1.5.26.2 2020/04/21 19:37:42 martin Exp $ */
      2 
      3 #if defined(_STANDALONE)
      4 #ifdef __thumb__
      5 #include "strcpy_thumb.S"
      6 #else
      7 #include "strcpy_naive.S"
      8 #endif
      9 #else
     10 #include "strcpy_arm.S"
     11 #endif
     12