1 1.1.2.1 skrll /* $NetBSD: kern_ksyms_buf.c,v 1.1.2.1 2015/09/22 12:06:07 skrll Exp $ */ 2 1.1.2.1 skrll 3 1.1.2.1 skrll #if defined(_KERNEL_OPT) 4 1.1.2.1 skrll #include "opt_copy_symtab.h" 5 1.1.2.1 skrll #endif 6 1.1.2.1 skrll 7 1.1 joerg #define SYMTAB_FILLER "|This is the symbol table!" 8 1.1 joerg 9 1.1.2.1 skrll #ifdef makeoptions_COPY_SYMTAB 10 1.1 joerg #ifndef SYMTAB_SPACE 11 1.1 joerg char db_symtab[] = SYMTAB_FILLER; 12 1.1 joerg #else 13 1.1 joerg char db_symtab[SYMTAB_SPACE] = SYMTAB_FILLER; 14 1.1 joerg #endif 15 1.1 joerg int db_symtabsize = sizeof(db_symtab); 16 1.1 joerg #endif 17