aboutsummaryrefslogtreecommitdiff
path: root/ld/ldsym.h
diff options
context:
space:
mode:
Diffstat (limited to 'ld/ldsym.h')
-rw-r--r--ld/ldsym.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ld/ldsym.h b/ld/ldsym.h
index 8a12bbc..67daed7 100644
--- a/ld/ldsym.h
+++ b/ld/ldsym.h
@@ -51,9 +51,10 @@ PROTO(ldsym_type *, ldsym_get, (char *));
PROTO(ldsym_type *, ldsym_get_soft, (char *));
PROTO(void, ldsym_print_symbol_table,(void));
PROTO(void, ldsym_write, (void));
-
+PROTO(boolean, ldsym_undefined, (char *));
#define FOR_EACH_LDSYM(x) \
extern ldsym_type *symbol_head; \
ldsym_type *x; \
for (x = symbol_head; x != (ldsym_type *)NULL; x = x->next)
+