*** empty log message ***

This commit is contained in:
hyung-hwan 2006-07-28 17:20:27 +00:00
parent bc921f906e
commit 8a659cf8a7
2 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,6 @@
$ $
$! build script for OpenVMS $! build script for OpenVMS
$! define xp [dir.of.xpkit.xp]
$ $
$ names := awk,err,tree,tab,map,parse,run,sa,val,func,misc,extio,rex $ names := awk,err,tree,tab,map,parse,run,sa,val,func,misc,extio,rex
$ gosub compile $ gosub compile
@ -17,7 +18,8 @@ $ goto compile_loop
$ $
$ compile_file: $ compile_file:
$ write sys$output "Compiling ''name'.c..." $ write sys$output "Compiling ''name'.c..."
$ cc/define=XP_AWK_STAND_ALONE 'name' $! cc/define=XP_AWK_STAND_ALONE 'name'
$ cc/define=XP_AWK_STAND_ALONE /pointer_size=long 'name'
$ return $ return
$ $
$ archive: $ archive:

View File

@ -1,5 +1,5 @@
/* /*
* $Id: types.h,v 1.50 2006-07-17 04:17:40 bacon Exp $ * $Id: types.h,v 1.51 2006-07-28 17:20:27 bacon Exp $
*/ */
#ifndef _XP_TYPES_H_ #ifndef _XP_TYPES_H_
@ -210,6 +210,9 @@ typedef int xp_mcint_t;
typedef unsigned short xp_wchar_t; typedef unsigned short xp_wchar_t;
typedef unsigned short xp_wcint_t; typedef unsigned short xp_wcint_t;
#elif (XP_SIZEOF_WCHAR_T == 4) #elif (XP_SIZEOF_WCHAR_T == 4)
#if defined(vms) || defined(__vms)
typedef unsigned int xp_wchar_t;
typedef int xp_wcint_t;
#if XP_SIZEOF_LONG == 4 #if XP_SIZEOF_LONG == 4
typedef long xp_wchar_t; typedef long xp_wchar_t;
typedef long xp_wcint_t; typedef long xp_wcint_t;