minix/lib/nbsd_libc/sys-minix/write.c
Thomas Veerman 92b61c816d Fix many more comiler warnings
Most warnings were harmless, some real bugs. Test set should now compile
cleanly with ack, gcc, and clang.
2011-11-28 10:07:55 +00:00

21 lines
337 B
C

#include <sys/cdefs.h>
#include <lib.h>
#include "namespace.h"
#include <unistd.h>
#ifdef __weak_alias
__weak_alias(write, _write)
#endif
ssize_t write(int fd, const void *buffer, size_t nbytes)
{
message m;
m.m1_i1 = fd;
m.m1_i2 = nbytes;
m.m1_p1 = (char *) __UNCONST(buffer);
return(_syscall(VFS_PROC_NR, WRITE, &m));
}