Pristine Ack-5.5
[Ack-5.5.git] / util / ceg / defaults / pseudo / C_init.c
1 #define CODE_EXPANDER
2 #include <back.h>
3 #include <system.h>
4 #include "mach.h"
5
6 void
7 C_init( wsize, psize)
8 arith wsize, psize;
9 {
10         if ( wsize != EM_WSIZE) {
11                 fprint( STDERR, "wrong word size\n");
12                 exit( -1);
13         }
14         if ( psize != EM_PSIZE) {
15                 fprint( STDERR, "wrong pointer size\n");
16                 exit( -1);
17         }
18
19         init_back();
20 }