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