1 #define SYMTAB_FILLER "|This is the symbol table!" 2 3 #ifdef COPY_SYMTAB 4 #ifndef SYMTAB_SPACE 5 char db_symtab[] = SYMTAB_FILLER; 6 #else 7 char db_symtab[SYMTAB_SPACE] = SYMTAB_FILLER; 8 #endif 9 int db_symtabsize = sizeof(db_symtab); 10 #endif 11