ack/util/ceg/defaults/pseudo/C_init.c

20 lines
307 B
C
Raw Normal View History

#define CODE_EXPANDER
1987-11-20 10:41:03 +00:00
#include <em.h>
#include <system.h>
#include "mach.h"
C_init( wsize, psize)
arith wsize, psize;
{
if ( wsize != EM_WSIZE) {
fprint( STDERR, "wrong word size\n");
exit( -1);
}
if ( psize != EM_PSIZE) {
fprint( STDERR, "wrong pointer size\n");
exit( -1);
}
init_back();
}