/* * fclose.c */ #include #include int fclose(FILE * __f) { return close(fileno(__f)); }