mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
217 B
10 lines
217 B
#define _BSD_SOURCE
|
|
#include <dirent.h>
|
|
#include <limits.h>
|
|
#include "syscall.h"
|
|
|
|
int getdents(int fd, struct dirent *buf, size_t len)
|
|
{
|
|
if (len>INT_MAX) len = INT_MAX;
|
|
return syscall(SYS_getdents, fd, buf, len);
|
|
}
|
|
|