]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - ld/ldmisc.h
ld: Add lib32 directories for 32-bit emulation on FreeBSD/amd64
[thirdparty/binutils-gdb.git] / ld / ldmisc.h
index 3b8a13f0725ac176151c7ecfbadcdc482d7832ba..5ab9157cdf84713dab5cf6d09e502643f769bf1b 100644 (file)
@@ -1,5 +1,5 @@
 /* ldmisc.h -
-   Copyright (C) 1991-2021 Free Software Foundation, Inc.
+   Copyright (C) 1991-2023 Free Software Foundation, Inc.
 
    This file is part of the GNU Binutils.
 
@@ -27,10 +27,6 @@ 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 yyerror (const char *);
-extern void *xmalloc (size_t);
-extern void *xrealloc (void *, size_t);
-extern void xexit (int);
 
 #define ASSERT(x) \
 do { if (!(x)) info_assert(__FILE__,__LINE__); } while (0)
@@ -38,7 +34,8 @@ do { if (!(x)) info_assert(__FILE__,__LINE__); } while (0)
 #define FAIL() \
 do { info_assert(__FILE__,__LINE__); } while (0)
 
-extern void print_space (void);
+extern void print_spaces (int);
+#define print_space() print_spaces (1)
 extern void print_nl (void);
 
 #endif