index
:
sbos.git
master
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
userland
/
libc
/
dirent
/
closedir.c
blob: e216d7c63e75029dce84ae2ae598fb017b612b99 (
plain
)
1
2
3
4
5
6
7
#include <dirent.h> int closedir(DIR *dir) { close(dir->fd); free(dir); return 0; }