1224093Sdougb/* $FreeBSD$ */
2224093Sdougb
3224093Sdougb/*
4224093Sdougb * Copyright (C) 2009  Internet Systems Consortium, Inc. ("ISC")
5224093Sdougb *
6224093Sdougb * Permission to use, copy, modify, and/or distribute this software for any
7224093Sdougb * purpose with or without fee is hereby granted, provided that the above
8224093Sdougb * copyright notice and this permission notice appear in all copies.
9224093Sdougb *
10224093Sdougb * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
11224093Sdougb * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12224093Sdougb * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
13224093Sdougb * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14224093Sdougb * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
15224093Sdougb * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16224093Sdougb * PERFORMANCE OF THIS SOFTWARE.
17224093Sdougb */
18224093Sdougb
19224093Sdougb/* $Id: backtrace-emptytbl.c,v 1.3 2009-09-01 20:13:44 each Exp $ */
20224093Sdougb
21224093Sdougb/*! \file */
22224093Sdougb
23224093Sdougb/*
24224093Sdougb * This file defines an empty (default) symbol table used in backtrace.c
25224093Sdougb * If the application wants to have a complete symbol table, it should redefine
26224093Sdougb * isc__backtrace_symtable with the complete table in some way, and link the
27224093Sdougb * version of the library not including this definition
28224093Sdougb * (e.g. libisc-nosymbol.a).
29224093Sdougb */
30224093Sdougb
31224093Sdougb#include <config.h>
32224093Sdougb
33224093Sdougb#include <isc/backtrace.h>
34224093Sdougb
35224093Sdougbconst int isc__backtrace_nsymbols = 0;
36224093Sdougbconst isc_backtrace_symmap_t isc__backtrace_symtable[] = { { NULL, "" } };
37