confdef.h

/* [<][>]
[^][v][top][bottom][index][help] */

FUNCTIONS

This source file includes following functions.
  1. EMSTOP

   1 /*
   2 
   3         zinc コンパイラを生成する環境に合わせて変更するべき設定
   4 
   5 */
   6 
   7 #if !defined _CONFDEF_H_
   8 #define _CONFDEF_H_
   9 
  10 #include <sys/types.h>
  11 #include <stdio.h>
  12 
  13 #define EMSTOP(mes, num) \
  14 fprintf(stderr, "EMSTOP %s:%d " mes "(input line : %d)\n", \
  15         __FILE__, __LINE__, num);
  16 
  17 typedef int zinc_int32;
  18 typedef unsigned int zinc_u_int32;
  19 
  20 #endif /* _CONFDEF_H_ */
  21 #include <stdio.h>

/* [<][>][^][v][top][bottom][index][help] */