home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
octave-1.1.1p1-src.tgz
/
tar.out
/
fsf
/
octave
/
dld
/
test
/
general
/
list-undefined.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
392b
|
19 lines
/* print out all the undefined symbols */
#include <dld.h>
list_undefined () {
char **list = dld_list_undefined_sym ();
if (list) {
register int i;
printf ("There are a total of %d undefined symbols:\n",
dld_undefined_sym_count);
for (i = 0; i < dld_undefined_sym_count; i++)
printf ("%d: %s\n", i+1, list[i]);
} else
printf ("No undefined symbols\n");
}