blob: cab29952dfd721963ab9c4fb13a96038c7163ae8 (
plain) (
tree)
|
|
#define _BSD_SOURCE
#include <dirent.h>
#include "syscall.h"
#include "libc.h"
int getdents(int fd, struct dirent *buf, size_t len)
{
return syscall(SYS_getdents, fd, buf, len);
}
LFS64(getdents);
|