*** empty log message ***

This commit is contained in:
hyung-hwan 2007-02-07 14:51:44 +00:00
parent 72f2be9f67
commit 58b9a8e4f7
4 changed files with 27 additions and 9 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: awk_i.h,v 1.100 2007-02-03 10:47:40 bacon Exp $
* $Id: awk_i.h,v 1.101 2007-02-07 14:51:44 bacon Exp $
*
* {License}
*/
@ -151,8 +151,8 @@ struct ase_awk_t
{
ase_cint_t curc;
ase_cint_t ungotc[5];
ase_cint_t ungotc_line[5];
ase_cint_t ungotc_column[5];
ase_size_t ungotc_line[5];
ase_size_t ungotc_column[5];
ase_size_t ungotc_count;
ase_size_t line;

View File

@ -1,5 +1,5 @@
/*
* $Id: conf_msw.h,v 1.7 2007-02-03 10:52:35 bacon Exp $
* $Id: conf_msw.h,v 1.8 2007-02-07 14:51:44 bacon Exp $
*
* {License}
*/
@ -25,11 +25,11 @@ _M_X64 x64 platform
#define ASE_SIZEOF_SHORT 2
#define ASE_SIZEOF_INT 4
#ifdef _WIN64
/*#ifdef _WIN64
#define ASE_SIZEOF_LONG 8
#else
#else*/
#define ASE_SIZEOF_LONG 4
#endif
/*#endif*/
#ifdef __POCC__
/* pelles c with no microsoft extension */

View File

@ -3,7 +3,19 @@ CFLAGS = /nologo /MT /W3 /GR- -I..\..\.. -D_WIN32_WINNT=0x0400
LDFLAGS = /libpath:..\..\awk
LIBS = aseawk.lib kernel32.lib user32.lib
all: awk #rex2 rex3
!if !defined(CPU) || "$(CPU)" == ""
CPU = $(PROCESSOR_ARCHITECTURE)
!endif # CPU
!if "$(CPU)" == ""
CPU = i386
!endif
!if "$(CPU)" == "IA64"
LIBS = $(LIBS) bufferoverflowu.lib
!endif
all: awk
awk: awk.obj
link /nologo /out:$@.exe $(LDFLAGS) $(LIBS) awk.obj

View File

@ -1,5 +1,5 @@
/*
* $Id: types.h,v 1.67 2007-02-07 06:56:55 bacon Exp $
* $Id: types.h,v 1.68 2007-02-07 14:51:44 bacon Exp $
*
* {License}
*/
@ -44,6 +44,12 @@ typedef int ase_tri_t;
#elif ASE_SIZEOF_VOID_P == ASE_SIZEOF_LONG_LONG
typedef long long ase_int_t;
typedef unsigned long long ase_uint_t;
#elif ASE_SIZEOF_VOID_P == ASE_SIZEOF___INT32
typedef __int32 ase_int_t;
typedef unsigned __int32 ase_uint_t;
#elif ASE_SIZEOF_VOID_P == ASE_SIZEOF___INT64
typedef __int64 ase_int_t;
typedef unsigned __int64 ase_uint_t;
#else
#error unsupported pointer size
#endif