Home | History | Annotate | Line # | Download | only in string
      1 /* $NetBSD: strcpy.S,v 1.5 2013/08/20 21:35:24 matt 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