blob: a8798c2abd87eb254346156f883aea9d4995af8a [file] [log] [blame]
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00001/* Copyright (C) 2001, 2002 Red Hat, Inc.
2 Written by Ulrich Drepper <drepper@redhat.com>, 2001.
3
4 This program is Open Source software; you can redistribute it and/or
5 modify it under the terms of the Open Software License version 1.0 as
6 published by the Open Source Initiative.
7
8 You should have received a copy of the Open Software License along
9 with this program; if not, you may obtain a copy of the Open Software
10 License version 1.0 from http://www.opensource.org/licenses/osl.php or
11 by writing the Open Source Initiative c/o Lawrence Rosen, Esq.,
12 3001 King Ranch Road, Ukiah, CA 95482. */
13
14#ifndef SYMBOLHASH_H
15#define SYMBOLHASH_H 1
16
17/* Definitions for the symbol hash table. */
18#define TYPE struct symbol *
19#define NAME ld_symbol_tab
20#define ITERATE 1
21#define COMPARE(a, b) strcmp ((a)->name, (b)->name)
22#include <dynamicsizehash.h>
23
24#endif /* symbolhash.h */