xref: /netbsd-src/sys/kern/kern_ksyms_buf.c (revision c692eec272a2b69c7eeefcb240c874a4ba07b8b7)
1 /*	$NetBSD: kern_ksyms_buf.c,v 1.4 2015/08/30 01:46:02 uebayasi Exp $	*/
2 
3 #if defined(_KERNEL_OPT)
4 #include "opt_copy_symtab.h"
5 #endif
6 
7 #define		SYMTAB_FILLER	"|This is the symbol table!"
8 
9 #ifdef makeoptions_COPY_SYMTAB
10 #ifndef SYMTAB_SPACE
11 char		db_symtab[] = SYMTAB_FILLER;
12 #else
13 char		db_symtab[SYMTAB_SPACE] = SYMTAB_FILLER;
14 #endif
15 int		db_symtabsize = sizeof(db_symtab);
16 #endif
17