* tests/test_malloc.c (print_list): Define only if DEBUG_RUN_ONE_TEST.
* tests/test_stack.c (print_list): Define only if VERBOSE.
return result;
}
+#ifdef DEBUG_RUN_ONE_TEST
void print_list(ln *l)
{
ln *p;
}
printf("\n");
}
+#endif /* DEBUG_RUN_ONE_TEST */
/* Check that l contains numbers from m to n inclusive in ascending order */
void check_list(ln *l, int m, int n)
AO_stack_push(&the_list, (AO_t *)le);
}
+#ifdef VERBOSE
void print_list(void)
{
list_element *p;
p = (list_element *)AO_REAL_NEXT_PTR(p -> next))
printf("%d\n", p -> data);
}
+#endif /* VERBOSE */
static char marks[MAX_NTHREADS * (MAX_NTHREADS + 1) / 2 + 1];