OrionLibC
Barry Importing existing Orion LibC 03048a9 (2 years, 2 months ago)#include <sys/syscall.h> #include <dirent.h> #include <errno.h> /* Get directory entries */ size_t getdents(int fd, void *buf, size_t count) { int ret; asm volatile("int $0x80" : "=a" (ret) : "0" (SYSCALL_GETDENTS), "c" (3), "S" (&fd)); if (ret >= 0) return (size_t) ret; errno = -ret; return -1; }