xref: /netbsd-src/sys/kern/kern_ksyms_buf.c (revision 80d9064ac03cbb6a4174695f0d5b237c8766d3d0)
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