Home | History | Annotate | Download | only in src

Lines Matching defs:memmove

188 #define memmove(d,s,n)   _memmove(d,s,n)
192 /* To cope with SunOS4 and other systems that lack memmove() but have bcopy(),
193 define a macro for memmove() if HAVE_MEMMOVE is false, provided that HAVE_BCOPY
198 #undef memmove /* some systems may have a macro */
200 #define memmove(a, b, c) bcopy(b, a, c)
221 #define memmove(a, b, c) pcre2_memmove(a, b, c)