Home | History | Annotate | Line # | Download | only in kern
      1  1.4  uebayasi /*	$NetBSD: kern_ksyms_buf.c,v 1.4 2015/08/30 01:46:02 uebayasi Exp $	*/
      2  1.4  uebayasi 
      3  1.4  uebayasi #if defined(_KERNEL_OPT)
      4  1.4  uebayasi #include "opt_copy_symtab.h"
      5  1.4  uebayasi #endif
      6  1.4  uebayasi 
      7  1.1     joerg #define		SYMTAB_FILLER	"|This is the symbol table!"
      8  1.1     joerg 
      9  1.4  uebayasi #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.3    martin 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