15 lines
208 B
C
15 lines
208 B
C
|
#include <stdio.h>
|
||
|
|
||
|
cleenup()
|
||
|
{
|
||
|
register FILE *iop ;
|
||
|
extern FILE *_lastbuf ;
|
||
|
|
||
|
for ( iop = _iob ; iop < _lastbuf ; iop ++ )
|
||
|
fclose( iop ) ;
|
||
|
}
|
||
|
|
||
|
exit(n)
|
||
|
int n;
|
||
|
{ cleenup() ; _exit(n) ; }
|