blob: 062dadec160d4542e23bb8b047378da0e07b9b01 [file] [log] [blame]
Ben Cheng25b3c042013-11-20 14:45:36 -08001/* Copyright (C) 2001, 2002 Red Hat, Inc.
Elliott Hughes03333822015-02-18 22:19:45 -08002 This file is part of elfutils.
Ben Cheng25b3c042013-11-20 14:45:36 -08003 Written by Ulrich Drepper <drepper@redhat.com>, 2001.
4
Elliott Hughes03333822015-02-18 22:19:45 -08005 This file is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
Ben Cheng25b3c042013-11-20 14:45:36 -08009
Elliott Hughes03333822015-02-18 22:19:45 -080010 elfutils is distributed in the hope that it will be useful, but
Ben Cheng25b3c042013-11-20 14:45:36 -080011 WITHOUT ANY WARRANTY; without even the implied warranty of
Elliott Hughes03333822015-02-18 22:19:45 -080012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
Ben Cheng25b3c042013-11-20 14:45:36 -080014
Elliott Hughes03333822015-02-18 22:19:45 -080015 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
Ben Cheng25b3c042013-11-20 14:45:36 -080017
18#ifndef SYMBOLHASH_H
19#define SYMBOLHASH_H 1
20
21/* Definitions for the symbol hash table. */
22#define TYPE struct symbol *
23#define NAME ld_symbol_tab
24#define ITERATE 1
25#define COMPARE(a, b) strcmp ((a)->name, (b)->name)
26#include <dynamicsizehash.h>
27
28#endif /* symbolhash.h */