aboutsummaryrefslogtreecommitdiff
path: root/ld/ldmisc.h
diff options
context:
space:
mode:
Diffstat (limited to 'ld/ldmisc.h')
-rw-r--r--ld/ldmisc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ld/ldmisc.h b/ld/ldmisc.h
index 5ab9157..6fbc4c7 100644
--- a/ld/ldmisc.h
+++ b/ld/ldmisc.h
@@ -27,6 +27,10 @@ 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)