*** empty log message ***

This commit is contained in:
2007-02-07 07:18:44 +00:00
parent 6741a0b520
commit c05da242c1
4 changed files with 243 additions and 588 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: func.c,v 1.93 2007-02-03 10:47:41 bacon Exp $
* $Id: func.c,v 1.94 2007-02-07 07:17:02 bacon Exp $
*
* {License}
*/
@ -20,7 +20,18 @@ static int __bfn_match (ase_awk_run_t*, const ase_char_t*, ase_size_t);
static int __bfn_sprintf (ase_awk_run_t*, const ase_char_t*, ase_size_t);
#undef MAX
#define MAX ASE_TYPE_MAX(ase_size_t)
#if defined(__HP_cc)
#if ASE_SIZEOF_VOID_P == 4
#define MAX 0xFFFFFFFFlu
#elif ASE_SIZEOF_VOID_P == 8
#define MAX 0xFFFFFFFFFFFFFFFFllu
#else
#define MAX ASE_TYPE_MAX(ase_size_t)
#endif
#else
#define MAX ASE_TYPE_MAX(ase_size_t)
#endif
static ase_awk_bfn_t __sys_bfn[] =
{