ack/util/ceg/defaults/pseudo/C_init.c
1993-11-10 15:07:12 +00:00

21 lines
314 B
C

#define CODE_EXPANDER
#include <back.h>
#include <system.h>
#include "mach.h"
void
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();
}