*** empty log message ***

This commit is contained in:
hyung-hwan 2007-01-29 06:40:29 +00:00
parent 3c8ee4017e
commit fc36473017
2 changed files with 7 additions and 3 deletions

View File

@ -15,6 +15,7 @@ all: lib
lib: $(C_OBJS) lib: $(C_OBJS)
$(AR) cr lib$(OUT).a $(C_OBJS) $(AR) cr lib$(OUT).a $(C_OBJS)
if [ "$(RANLIB)" = "ranlib" ]; then ranlib libaseawk.a; fi
clean: clean:
rm -rf $(OBJS) lib$(OUT).a *.o rm -rf $(OBJS) lib$(OUT).a *.o

View File

@ -1,5 +1,5 @@
/* /*
* $Id: types.h,v 1.64 2007-01-29 04:31:02 bacon Exp $ * $Id: types.h,v 1.65 2007-01-29 06:40:29 bacon Exp $
*/ */
#ifndef _ASE_TYPES_H_ #ifndef _ASE_TYPES_H_
@ -9,7 +9,7 @@
#include <ase/conf_msw.h> #include <ase/conf_msw.h>
#elif defined(vms) || defined(__vms) #elif defined(vms) || defined(__vms)
#include <ase/conf_vms.h> #include <ase/conf_vms.h>
#elif defined(__unix__) || defined(__unix) || defined(__NetBSD__) || defined(__OpenBSD__) #elif defined(__unix__) || defined(__unix) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || (defined(__APPLE__) && defined(__MACH__))
#if !defined(__unix__) #if !defined(__unix__)
#define __unix__ #define __unix__
#endif #endif
@ -168,12 +168,15 @@ typedef int ase_mcint_t;
#if defined(vms) || defined(__vms) #if defined(vms) || defined(__vms)
typedef unsigned int ase_wchar_t; typedef unsigned int ase_wchar_t;
typedef int ase_wcint_t; typedef int ase_wcint_t;
#elif defined(__FreeBSD__) || defined(__NetBSD__) #elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
typedef int ase_wchar_t; typedef int ase_wchar_t;
typedef int ase_wcint_t; typedef int ase_wcint_t;
#elif (defined(sun) || defined(__sun)) && defined(_LP64) #elif (defined(sun) || defined(__sun)) && defined(_LP64)
typedef int ase_wchar_t; typedef int ase_wchar_t;
typedef int ase_wcint_t; typedef int ase_wcint_t;
#elif defined(__APPLE__) && defined(__MACH__)
typedef int ase_wchar_t;
typedef int ase_wcint_t;
#elif ASE_SIZEOF_LONG == 4 #elif ASE_SIZEOF_LONG == 4
typedef long ase_wchar_t; typedef long ase_wchar_t;
typedef long ase_wcint_t; typedef long ase_wcint_t;