*** empty log message ***

This commit is contained in:
erikb
1986-03-10 13:07:55 +00:00
parent d566eb8d63
commit 65c1ca3fd9
105 changed files with 16543 additions and 0 deletions

11
lang/cem/cemcom/stb.c Normal file
View File

@@ -0,0 +1,11 @@
/* $Header$ */
/* library routine for copying structs */
__stb(n, f, t)
register char *f, *t; register n;
{
if (n > 0)
do
*t++ = *f++;
while (--n);
}