pike.git/src/constants.c:1:
/*
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
- || $Id: constants.c,v 1.51 2004/04/06 13:00:41 nilsson Exp $
+ || $Id: constants.c,v 1.52 2004/04/22 20:49:33 nilsson Exp $
*/
#include "global.h"
#include "constants.h"
#include "pike_macros.h"
#include "program.h"
#include "pike_types.h"
#include "stralloc.h"
#include "pike_memory.h"
#include "interpret.h"
#include "mapping.h"
#include "pike_error.h"
#include "pike_security.h"
#include "block_alloc.h"
- RCSID("$Id: constants.c,v 1.51 2004/04/06 13:00:41 nilsson Exp $");
+ RCSID("$Id: constants.c,v 1.52 2004/04/22 20:49:33 nilsson Exp $");
struct mapping *builtin_constants = 0;
#ifdef PIKE_DEBUG
struct callable *first_callable = NULL;
#endif
PMOD_EXPORT struct mapping *get_builtin_constants(void)
{
return builtin_constants;
pike.git/src/constants.c:195: Inside #if defined(PIKE_DEBUG)
{
fprintf(stderr,"%010ld @E@: %s\n",b->x[e].runs, b->x[e].name->str);
}
}
}
}
#endif
void init_builtin_constants(void)
{
- builtin_constants = allocate_mapping(256);
+ builtin_constants = allocate_mapping(280);
}
void exit_builtin_constants(void)
{
#ifdef DO_PIKE_CLEANUP
if(builtin_constants)
{
free_mapping(builtin_constants);
builtin_constants=0;
}
#endif
}