24 more bytes...

This commit is contained in:
mycroft 1995-01-18 03:13:37 +00:00
parent d5eea96416
commit ef7e46cf77
1 changed files with 1 additions and 10 deletions

View File

@ -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;