BSD 1 development
[unix-history] / portlib / cexit.c
# include "iodec.h"
/**
** flush and close all files and exit
**/
cexit(rcode)
{
flush();
__exit(rcode);
}
exit(rcode)
{
cexit(rcode);
}