blob: 566a79400a200e8e0e6f69c389ad119de0f4f4cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <dirent.h>
#include "nonstd/assert.h"
#include "../_syscall.h"
int closedir(DIR *dirp)
{
ASSERT_NONNULL(dirp);
SYSCALL("closedir", int, -1, dirp, 0, 0, 0, 0, 0);
}
/*
POSIX(1)
*/
|