#include <stdio.h>
#ifndef REGTEST
#include "_PDCLIB_io.h"
extern _PDCLIB_file_t * _PDCLIB_filelist;
void _PDCLIB_closeall( void )
{
_PDCLIB_file_t * stream = _PDCLIB_filelist;
_PDCLIB_file_t * next;
while ( stream != NULL )
{
next = stream->next;
fclose( stream );
stream = next;
}
}
#endif
#ifdef TEST
#include "_PDCLIB_test.h"
int main( void )
{
return TEST_RESULTS;
}
#endif