lang_dep.h

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

FUNCTIONS

This source file includes following functions.

   1 /*
   2 
   3         zinc の処理系に依存する仕様に関する設定
   4 
   5 */
   6 
   7 #if !defined _LANG_DEP_H_
   8 #define _LANG_DEP_H_
   9 
  10 #include "confdef.h"
  11 
  12 typedef zinc_int32 zinc_word;  /* word の型 */
  13 typedef zinc_u_int32 zinc_u_word;  /* word の型の符号無しの型 */
  14 
  15 #define ZINC_WORD_MAX 0x7fffffff  /* zinc_word のとりうる最大の値 */
  16 #define ZINC_SIZEOF_WORD 4
  17 
  18 #define ZINC_C_NAME_MAX_LEN 511  /* 名前の最大バイト数 */
  19 
  20 #endif /* _LANG_DEP_H_ */

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