--- ray/src/common/objset.c 1991/05/10 10:37:14 1.7 +++ ray/src/common/objset.c 1991/10/23 11:52:55 1.8 @@ -19,7 +19,11 @@ static char SCCSid[] = "$SunId$ LBL"; #include "otypes.h" #ifndef OSTSIZ +#ifdef BIGMEM +#define OSTSIZ 56437 /* object table size (a prime!) */ +#else #define OSTSIZ 12329 /* object table size (a prime!) */ +#endif #endif static OBJECT *ostable[OSTSIZ]; /* the object set table */