summaryrefslogtreecommitdiff
path: root/src/dirent/closedir.c
blob: c12abfff8a07f76a5ed888f14d5dbe609bb756c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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);
	*/
	return -1;
}
/*
POSIX(1)
*/