-#include "muscle_tab.h"
-
-/* The name this program was run with, for messages. */
-char *program_name;
-
-
-/*--------------------------.
-| Tracking space and time. |
-`--------------------------*/
-
-static void
-stage (const char *title)
-{
-#if HAVE_MALLINFO && HAVE_STRUCT_MALLINFO & HAVE_TIMES & HAVE_STRUCT_TMS
- if (trace_flag & trace_resource)
- {
- struct mallinfo minfo = mallinfo ();
- struct tms tinfo;
- times (&tinfo);
- fprintf (stderr, "STAGE: %30s: %9d (%9d): %ldu %lds\n",
- title,
- minfo.uordblks, minfo.arena,
- tinfo.tms_utime, tinfo.tms_stime);
- }
-#endif
-}