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

21 lines
314 B
C
Raw Permalink 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"
1993-11-10 15:07:12 +00:00
void
1987-11-20 10:41:03 +00:00
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();
}