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