repo.or.cz
/
syslinux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
setjmp.S: use C-style comments
[syslinux.git]
/
com32
/
lib
/
fclose.c
blob
41f6a62cc967ea0beaf719a941467762d6789587
1
/*
2
* fclose.c
3
*/
4
5
#include <stdio.h>
6
#include <unistd.h>
7
8
int
fclose
(
FILE
*
__f
)
9
{
10
return
close
(
fileno
(
__f
));
11
}