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