2012-06-19 01:27:26 -04:00
|
|
|
#include "stdio_impl.h"
|
|
|
|
|
|
|
|
static FILE *const dummy_file = 0;
|
|
|
|
weak_alias(dummy_file, __stdin_used);
|
|
|
|
weak_alias(dummy_file, __stdout_used);
|
|
|
|
weak_alias(dummy_file, __stderr_used);
|
|
|
|
|
|
|
|
static void close_file(FILE *f)
|
|
|
|
{
|
|
|
|
if (!f) return;
|
2012-11-01 23:46:39 -04:00
|
|
|
FFINALLOCK(f);
|
2012-06-19 01:27:26 -04:00
|
|
|
if (f->wpos > f->wbase) f->write(f, 0, 0);
|
|
|
|
if (f->rpos < f->rend) f->seek(f, f->rpos-f->rend, SEEK_CUR);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __stdio_exit(void)
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
OFLLOCK();
|
|
|
|
for (f=libc.ofl_head; f; f=f->next) close_file(f);
|
|
|
|
close_file(__stdin_used);
|
|
|
|
close_file(__stdout_used);
|
|
|
|
}
|