/* * done.c -- terminate the program * * $Id$ */ #include int done (int status) { exit (status); return 1; /* dead code to satisfy the compiler */ }