*** empty log message ***

This commit is contained in:
hyung-hwan 2006-09-08 11:27:01 +00:00
parent dbe1b14a23
commit 43f7cd5777
2 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,6 @@
SRCS = awk.c err.c tree.c str.c tab.c map.c parse.c run.c val.c misc.c
SRCS = \
awk.c err.c tree.c str.c tab.c map.c parse.c \
run.c val.c func.c misc.c extio.c rex.c
OBJS = $(SRCS:.c=.o)
OUT = libxpawk.a

View File

@ -1,5 +1,5 @@
/*
* $Id: types.h,v 1.54 2006-08-26 16:30:52 bacon Exp $
* $Id: types.h,v 1.55 2006-09-08 11:27:01 bacon Exp $
*/
#ifndef _XP_TYPES_H_
@ -223,6 +223,9 @@ typedef int xp_mcint_t;
#elif defined(__FreeBSD__)
typedef int xp_wchar_t;
typedef int xp_wcint_t;
#elif (defined(sun) || defined(__sun)) && defined(_LP64)
typedef int xp_wchar_t;
typedef int xp_wcint_t;
#elif XP_SIZEOF_LONG == 4
typedef long xp_wchar_t;
typedef long xp_wcint_t;