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 >
C/C++ Source or Header  |  1996-09-28  |  392b  |  19 lines

  1. /* print out all the undefined symbols */
  2.  
  3. #include <dld.h>
  4.  
  5. list_undefined () {
  6.     char **list = dld_list_undefined_sym ();
  7.  
  8.     if (list) {
  9.     register int i;
  10.         
  11.     printf ("There are a total of %d undefined symbols:\n",
  12.         dld_undefined_sym_count);
  13.     for (i = 0; i < dld_undefined_sym_count; i++)
  14.         printf ("%d: %s\n", i+1, list[i]);
  15.     } else
  16.     printf ("No undefined symbols\n");
  17. }
  18.     
  19.