12 lines
118 B
C
12 lines
118 B
C
/*
|
|
* fclose.c
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int fclose(FILE * __f)
|
|
{
|
|
return close(fileno(__f));
|
|
}
|