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

20 lines
309 B
C
Raw Normal View History

#define CODE_EXPANDER
1989-01-27 16:41:04 +00:00
#include <back.h>
1987-11-20 10:41:03 +00:00
#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();
}