blob: 59f7789a9a892c651e625110bf63b728965236a7 (
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(WRITE, fd, buf, count);
}
#endif
|