aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/math/BigInteger.java
AgeCommit message (Expand)AuthorFilesLines
2008-10-21re PR libgcj/37636 (java tools are unable to find resource files)Matthias Klose1-79/+487
2008-06-28Import GNU Classpath (classpath-0_97_2-release).Matthias Klose1-2/+2
2007-06-03libjava/classpath/ChangeLog.gcj:Matthias Klose1-3/+2
2007-01-09Merged gcj-eclipse branch to trunk.Tom Tromey1-30/+48
2006-08-14Imported GNU Classpath 0.92Mark Wielaard1-1/+1
2006-03-10Imported GNU Classpath 0.90Mark Wielaard1-7/+15
2005-11-15Imported GNU Classpath 0.19 + gcj-import-20051115.Mark Wielaard1-3/+16
2005-07-16Initial revisionTom Tromey1-0/+2230
ers/ARM/binutils-2_43-branch Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/ld/ldmisc.h
blob: 7103b53710821550961644d093f211cfe0fc2d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* ldmisc.h -
   Copyright (C) 1991-2025 Free Software Foundation, Inc.

   This file is part of the GNU Binutils.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
   MA 02110-1301, USA.  */

#ifndef LDMISC_H
#define LDMISC_H

extern void vfinfo (FILE *fp, const char *fmt, va_list arg, bool is_warning);
extern void einfo (const char *, ...);
extern void fatal (const char *, ...) ATTRIBUTE_NORETURN;
extern void minfo (const char *, ...);
extern void info_msg (const char *, ...);
extern void lfinfo (FILE *, const char *, ...);
extern void info_assert (const char *, unsigned int);
extern void queue_unknown_cmdline_warning (const char *, ...);
extern void output_unknown_cmdline_warnings (void);

#define ASSERT(x) \
do { if (!(x)) info_assert(__FILE__,__LINE__); } while (0)

#define FAIL() \
do { info_assert(__FILE__,__LINE__); } while (0)

extern void print_spaces (int);
#define print_space() print_spaces (1)
extern void print_nl (void);
extern void percent_decode (const char *, char *);

#endif