Pristine Ack-5.5
[Ack-5.5.git] / modules / src / em_mes / C_ms_reg.c
1 /* $Id: C_ms_reg.c,v 1.5 1994/06/24 11:13:12 ceriel Exp $ */
2 /*
3  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
4  * See the copyright notice in the ACK home directory, in the file "Copyright".
5  */
6 #include <em.h>
7 #include <em_mes.h>
8
9 void
10 C_ms_reg(offs, siz, class, prior)
11         arith offs, siz;
12         int class, prior;
13 {
14         C_mes_begin(ms_reg);
15         C_cst(offs);
16         C_cst(siz);
17         C_cst((arith)class);
18         C_cst((arith)prior);
19         C_mes_end();
20 }