diff options
Diffstat (limited to 'lib/libc/arch/mips/string/bcopy.S')
-rw-r--r-- | lib/libc/arch/mips/string/bcopy.S | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/libc/arch/mips/string/bcopy.S b/lib/libc/arch/mips/string/bcopy.S index 90ead170596..244f78314cd 100644 --- a/lib/libc/arch/mips/string/bcopy.S +++ b/lib/libc/arch/mips/string/bcopy.S @@ -34,15 +34,23 @@ * SUCH DAMAGE. */ +#if MACHINE==pica +#include <machine/asm.h> +#else #include <machine/machAsmDefs.h> +#endif #if defined(LIBC_SCCS) && !defined(lint) ASMSTR("from: @(#)bcopy.s 8.1 (Berkeley) 6/4/93") - ASMSTR("$Id: bcopy.S,v 1.1 1995/10/18 08:41:34 deraadt Exp $") + ASMSTR("$Id: bcopy.S,v 1.2 1996/05/16 11:16:04 pefo Exp $") #endif /* LIBC_SCCS and not lint */ /* bcopy(s1, s2, n) */ + +#ifdef ABICALLS + .abicalls +#endif #ifdef MIPSEL # define LWHI lwr # define LWLO lwl |