BarryServer : Git

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

// Related

OrionLibC

Barry Importing existing Orion LibC 03048a9 (2 years, 2 months ago)
#include <sys/stat.h>
#include <sys/syscall.h>
#include <errno.h>

/* Make a directory */
int
mkdir(const char *pathname, mode_t mode)
{
	int ret;
	asm volatile("int $0x80" : "=a" (ret) : "0" (SYSCALL_MKDIR),
	             "c" (2), "S" (&pathname));
	if (ret >= 0)
		return ret;
	errno = -ret;
	return -1;
}