diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-01 15:12:30 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-01 15:12:30 +0000 |
commit | 0da2670630313f6f722a97dae6ba8443890bdf85 (patch) | |
tree | 1b2983cf94d8108964b061a78850015dbfac0806 /sys/lib/libkern/arch | |
parent | 085b9d98d3dcfc403b02ac4dbd997fa44bb20c06 (diff) |
use .S version
Diffstat (limited to 'sys/lib/libkern/arch')
-rw-r--r-- | sys/lib/libkern/arch/m68k/Makefile.inc | 6 | ||||
-rw-r--r-- | sys/lib/libkern/arch/m68k/strcat.S (renamed from sys/lib/libkern/arch/m68k/strcat.c) | 44 |
2 files changed, 28 insertions, 22 deletions
diff --git a/sys/lib/libkern/arch/m68k/Makefile.inc b/sys/lib/libkern/arch/m68k/Makefile.inc index 4a82786b2e9..643e746f3c1 100644 --- a/sys/lib/libkern/arch/m68k/Makefile.inc +++ b/sys/lib/libkern/arch/m68k/Makefile.inc @@ -1,7 +1,7 @@ -# $OpenBSD: Makefile.inc,v 1.2 1996/02/29 13:28:27 niklas Exp $ -# $NetBSD: Makefile.inc,v 1.6 1996/02/06 21:22:06 christos Exp $ +# $OpenBSD: Makefile.inc,v 1.3 1996/05/01 15:12:28 deraadt Exp $ +# $NetBSD: Makefile.inc,v 1.7 1996/04/18 01:53:04 cgd Exp $ SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \ - bcmp.S bzero.S ffs.S strcat.c strcmp.S strcpy.S strlen.S strncmp.S \ + bcmp.S bzero.S ffs.S strcat.S strcmp.S strcpy.S strlen.S strncmp.S \ strncpy.S htonl.S htons.S ntohl.S ntohs.S scanc.S skpc.S locc.S \ strncasecmp.c diff --git a/sys/lib/libkern/arch/m68k/strcat.c b/sys/lib/libkern/arch/m68k/strcat.S index 07296b8ed42..0a8b8f08788 100644 --- a/sys/lib/libkern/arch/m68k/strcat.c +++ b/sys/lib/libkern/arch/m68k/strcat.S @@ -1,9 +1,13 @@ -/* $NetBSD: strcat.c,v 1.2 1994/10/26 06:39:33 cgd Exp $ */ +/* $NetBSD: strcat.S,v 1.1 1996/04/18 01:53:06 cgd Exp $ */ -/* - * Copyright (c) 1988 Regents of the University of California. +/*- + * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. * + * This code is derived from software contributed to Berkeley by + * the Systems Programming Group of the University of Utah Computer + * Science Department. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -33,23 +37,25 @@ * SUCH DAMAGE. */ +#include "DEFS.h" + #if defined(LIBC_SCCS) && !defined(lint) -#ifdef notdef -static char *sccsid = "@(#)strcat.c 5.6 (Berkeley) 2/24/91"; +#if 0 + RCSID("from: @(#)strcpy.s 5.1 (Berkeley) 5/12/90") +#else + RCSID("$NetBSD: strcat.S,v 1.1 1996/04/18 01:53:06 cgd Exp $") #endif -static char *rcsid = "$NetBSD: strcat.c,v 1.2 1994/10/26 06:39:33 cgd Exp $"; #endif /* LIBC_SCCS and not lint */ -#include <string.h> - -char * -strcat(s, append) - register char *s; - register const char *append; -{ - char *save = s; - - for (; *s; ++s); - while (*s++ = *append++); - return(save); -} +ENTRY(strcat) + movl sp@(8),a0 | a0 = fromaddr + movl sp@(4),d0 | return value is toaddr + movl d0,a1 | a1 = toaddr +slloop: + tstb a1@+ | null? + bne slloop | no, keep going + subql #1,a1 +scloop: + movb a0@+,a1@+ | copy a byte + bne scloop | copied non-null, keep going + rts |