xref: /csrg-svn/old/games.vax/compat/bcopy.c (revision 6794)
1*6794Srrh static char sccsid[] = "	bcopy.c	1.1	82/05/12	";
2*6794Srrh 
3*6794Srrh bcopy(from, to, count)
4*6794Srrh 	char *from, *to;
5*6794Srrh 	int count;
6*6794Srrh {
7*6794Srrh 
8*6794Srrh 	asm("	movc3	12(ap),*4(ap),*8(ap)");
9*6794Srrh }
10*6794Srrh 
11*6794Srrh seteuid(n)
12*6794Srrh {
13*6794Srrh }
14*6794Srrh 
15*6794Srrh setegid(n)
16*6794Srrh {
17*6794Srrh }
18