* TODO: Update.
[deliverable/binutils-gdb.git] / ld / ldmisc.h
CommitLineData
252b5132
RH
1/* ldmisc.h -
2 Copyright (C) 1991, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
3
4 This file is part of GLD, the Gnu Linker.
5
6 GLD is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GLD is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GLD; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19
20#ifndef LDMISC_H
21#define LDMISC_H
22
23#ifdef ANSI_PROTOTYPES
24extern void einfo PARAMS ((const char *, ...));
25extern void minfo PARAMS ((const char *, ...));
26extern void info_msg PARAMS ((const char *, ...));
27extern void lfinfo PARAMS ((FILE *, const char *, ...));
28#else
29/* VARARGS*/
30extern void einfo ();
31/* VARARGS*/
32extern void minfo ();
33/* VARARGS*/
34extern void info_msg ();
35/*VARARGS*/
36extern void lfinfo ();
37#endif
38
39extern void info_assert PARAMS ((const char *, unsigned int));
40extern void yyerror PARAMS ((const char *));
41extern PTR xmalloc PARAMS ((size_t));
42extern PTR xrealloc PARAMS ((PTR, size_t));
43extern void xexit PARAMS ((int));
44extern char *buystring PARAMS ((CONST char *CONST));
45
46#define ASSERT(x) \
47do { if (!(x)) info_assert(__FILE__,__LINE__); } while (0)
48
49#define FAIL() \
50do { info_assert(__FILE__,__LINE__); } while (0)
51
52extern void print_space PARAMS ((void));
53extern void print_nl PARAMS ((void));
54extern char *demangle PARAMS ((const char *));
55
56#endif
This page took 0.04585 seconds and 4 git commands to generate.