setjmp.S: use C-style comments
[syslinux.git] / com32 / lib / fclose.c
blob41f6a62cc967ea0beaf719a941467762d6789587
1 /*
2 * fclose.c
3 */
5 #include <stdio.h>
6 #include <unistd.h>
8 int fclose(FILE *__f)
10 return close(fileno(__f));