*** empty log message ***

This commit is contained in:
hyung-hwan 2006-03-07 16:09:18 +00:00
parent c9b5100bb8
commit fb10fd5f5b
3 changed files with 14 additions and 7 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: map.c,v 1.6 2006-03-07 15:55:14 bacon Exp $
* $Id: map.c,v 1.7 2006-03-07 16:09:18 bacon Exp $
*/
#include <xp/awk/awk.h>
@ -162,7 +162,7 @@ xp_awk_pair_t* xp_awk_map_set (xp_awk_map_t* map, xp_char_t* key, void* val)
}
xp_awk_pair_t* xp_awk_map_getpair (
xp_awk_map_t* map, xp_char_t* key, const void** val)
xp_awk_map_t* map, xp_char_t* key, void** val)
{
xp_awk_pair_t* pair;

View File

@ -1,11 +1,13 @@
/*
* $Id: run.c,v 1.9 2006-03-07 15:55:14 bacon Exp $
* $Id: run.c,v 1.10 2006-03-07 16:09:18 bacon Exp $
*/
#include <xp/awk/awk.h>
#ifndef __STAND_ALONE
#include <xp/bas/assert.h>
#include <xp/bas/string.h>
#include <xp/bas/memory.h>
#endif
static int __activate_block (xp_awk_t* awk, xp_awk_nde_blk_t* nde);

View File

@ -1,9 +1,14 @@
/*
* $Id: val.c,v 1.3 2006-03-07 15:55:14 bacon Exp $
* $Id: val.c,v 1.4 2006-03-07 16:09:18 bacon Exp $
*/
#include <xp/awk/awk.h>
#ifndef __STAND_ALONE
#include <xp/bas/string.h>
#include <xp/bas/memory.h>
#endif
static xp_awk_val_nil_t __awk_nil = { XP_AWK_VAL_NIL };
xp_awk_val_t* xp_awk_val_nil = (xp_awk_val_t*)&__awk_nil;