From ef7e46cf77927f337163c7a27829c8245470aedd Mon Sep 17 00:00:00 2001 From: mycroft Date: Wed, 18 Jan 1995 03:13:37 +0000 Subject: [PATCH] 24 more bytes... --- sys/arch/i386/boot/io.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/sys/arch/i386/boot/io.c b/sys/arch/i386/boot/io.c index 07552d2d277e..4ad31c024467 100644 --- a/sys/arch/i386/boot/io.c +++ b/sys/arch/i386/boot/io.c @@ -1,4 +1,4 @@ -/* $NetBSD: io.c,v 1.14 1995/01/18 02:54:26 mycroft Exp $ */ +/* $NetBSD: io.c,v 1.15 1995/01/18 03:13:37 mycroft Exp $ */ /* * Ported to boot 386BSD by Julian Elischer (julian@tfs.com) Sept 1992 @@ -164,15 +164,6 @@ strcmp(s1, s2) return 1; } -strlen(s) - char *s; -{ - int n; - - for (n = 0; *s++; n++); - return n; -} - bcopy(from, to, len) char *from, *to; int len;