*** empty log message ***

This commit is contained in:
Steve Chamberlain
1991-03-27 02:29:23 +00:00
parent cb9d20492a
commit c660714fb1
3 changed files with 28 additions and 6 deletions

View File

@ -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)