blob: a705873a1ee7091f73a661e56e53863484ac8a6f (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef WRITE_H
#define WRITE_H
#include "syscalls.h"
static int write(unsigned int fd, const char * buf, unsigned long count) {
return syscall((void*)WRITE, (void*)fd, (void*)buf, (void*)count);
}
#endif
|