1/*	$NetBSD$	*/
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
11char		db_symtab[] = SYMTAB_FILLER;
12#else
13char		db_symtab[SYMTAB_SPACE] = SYMTAB_FILLER;
14#endif
15int		db_symtabsize = sizeof(db_symtab);
16#endif
17