#ifndef WRITE_H #define WRITE_H #include "syscalls.h" static int write(unsigned int fd, const char * buf, unsigned long count) { return syscall(WRITE, fd, buf, count); } #endif