diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 05:38:17 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 05:38:17 +0000 |
commit | 462fe1c05915e37987580d4c740391c27b280c31 (patch) | |
tree | a3de408e51dd2b180055fd3ce88a7a2929452cf2 /lib/libc/arch/m68k/string/ffs.S | |
parent | 86b4fdd623d3c50d7bfd9427c2c9208454cd0da7 (diff) |
update from netbsd
Diffstat (limited to 'lib/libc/arch/m68k/string/ffs.S')
-rw-r--r-- | lib/libc/arch/m68k/string/ffs.S | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/libc/arch/m68k/string/ffs.S b/lib/libc/arch/m68k/string/ffs.S index d35e3ffd291..273f4541440 100644 --- a/lib/libc/arch/m68k/string/ffs.S +++ b/lib/libc/arch/m68k/string/ffs.S @@ -1,3 +1,5 @@ +/* $NetBSD: ffs.S,v 1.5 1995/11/28 23:40:52 thorpej Exp $ */ + /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -35,16 +37,18 @@ * SUCH DAMAGE. */ +#include "DEFS.h" + #if defined(LIBC_SCCS) && !defined(lint) - .text - /*.asciz "from: @(#)ffs.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$Id: ffs.S,v 1.1 1995/10/18 08:41:31 deraadt Exp $" +#if 0 + RCSID("from: @(#)ffs.s 5.1 (Berkeley) 5/12/90") +#else + RCSID("$NetBSD: ffs.S,v 1.5 1995/11/28 23:40:52 thorpej Exp $") +#endif #endif /* LIBC_SCCS and not lint */ /* bit = ffs(value) */ -#include "DEFS.h" - ENTRY(ffs) movl sp@(4),d0 movl d0,d1 |