// testexit.cpp

// Tests the use of exit to terminate processes.
// To see results, do 'echo $status' from a csh,
// or do 'echo $?' from a Bourne shell (sh, bash, ksh).

// Author: Dr. Jeff Blessing
// Date:   November 28, 2000

#include <iostream>
using namespace std;

void main() 
{
   cout << "Test program for exit" << endl;
   exit(0);
}
