Tue Oct 20 12:29:02 1998 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
[official-gcc.git] / libiberty / memmove.c
blob818fc2496622ed10269aa24d92ae2c6c792a57a5
1 /* Wrapper to implement ANSI C's memmove using BSD's bcopy. */
2 /* This function is in the public domain. --Per Bothner. */
3 #include <ansidecl.h>
4 #ifdef __STDC__
5 #include <stddef.h>
6 #else
7 #define size_t unsigned long
8 #endif
10 PTR
11 memmove (s1, s2, n)
12 PTR s1;
13 CONST PTR s2;
14 size_t n;
16 bcopy (s2, s1, n);
17 return s1;