import gdb-1999-06-14 snapshot
[deliverable/binutils-gdb.git] / gdb / symmisc.c
index 97d2f6e83cd58740ef95451523172f85a00a8af3..c615bfcdea27d89f65917f17eacf8b1449f203fa 100644 (file)
@@ -154,8 +154,6 @@ free_symtab (s)
   mfree (s -> objfile -> md, (PTR) s);
 }
 
-#if MAINTENANCE_CMDS
-
 void
 print_symbol_bcache_statistics ()
 {
@@ -525,7 +523,7 @@ Arguments missing: an output file name and an optional symbol file name");
     {
       nomem (0);
     }
-  cleanups = make_cleanup ((make_cleanup_func) freeargv, (char *) argv);
+  cleanups = make_cleanup_freeargv (argv);
 
   if (argv[0] != NULL)
     {
@@ -762,7 +760,7 @@ maintenance_print_psymbols (args, from_tty)
     {
       nomem (0);
     }
-  cleanups = make_cleanup ((make_cleanup_func) freeargv, (char *) argv);
+  cleanups = make_cleanup_freeargv (argv);
 
   if (argv[0] != NULL)
     {
@@ -910,7 +908,7 @@ maintenance_print_msymbols (args, from_tty)
     {
       nomem (0);
     }
-  cleanups = make_cleanup ((make_cleanup_func) freeargv, argv);
+  cleanups = make_cleanup_freeargv (argv);
 
   if (argv[0] != NULL)
     {
@@ -1055,8 +1053,6 @@ block_depth (block)
   return i;
 }
 
-#endif /* MAINTENANCE_CMDS */
-
 \f
 /* Increase the space allocated for LISTP, which is probably
    global_psymbols or static_psymbols. This space will eventually
This page took 0.023454 seconds and 4 git commands to generate.