*** empty log message ***
This commit is contained in:
11
lang/cem/cemcom/stb.c
Normal file
11
lang/cem/cemcom/stb.c
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user