1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/lang/modula-3-socks/files/write.c

16 lines
243 B
C
Raw Normal View History

#include "wrap.h"
#include <sys/types.h>
#include <unistd.h>
size_t
m3_write(int fd, const void *buf, int nbytes)
{
int result;
ENTER_CRITICAL;
MAKE_READABLE(buf);
result = write(fd, buf, nbytes);
EXIT_CRITICAL;
return result;
}