configurable minimum size for the string table

This commit is contained in:
Roberto Ierusalimschy
2002-03-05 13:22:54 -03:00
parent 8a1a512c64
commit 457d88eaaa
3 changed files with 10 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: llimits.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $
** $Id: llimits.h,v 1.37 2002/02/14 21:43:01 roberto Exp roberto $
** Limits, basic types, and some other `installation-dependent' definitions
** See Copyright Notice in lua.h
*/
@@ -108,5 +108,10 @@ typedef unsigned long Instruction;
#endif
/* minimum size for the string table */
#ifndef MINSTRTABSIZE
#define MINSTRTABSIZE 20
#endif
#endif