BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / blob / 11f4683b13d097219efe4887820b96d54ffee02c / unistd / write.c

// Related

OrionLibC

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

/* Write to a file */
int
write(int fd, void *buf, size_t count)
{
	int ret;
	asm volatile("int $0x80" : "=a" (ret) : "0" (SYSCALL_WRITE),
	             "c" (3), "S" (&fd));
	if (ret >= 0)
		return ret;
	errno = -ret;
	return -1;
}