summaryrefslogtreecommitdiff
path: root/lang/modula-3-socks/files/write.c
blob: fc9412ea0774be498785aeca682a18a7085d3db4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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;
}