/* * done.c -- terminate the program * * $Id$ */ #include void done (int status) { exit (status); }