BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / blob / ad9b6af63f1fdfcf3556c9b2fc670f72cdc60ab4 / dirent.c

// Related

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;
}