write.c 154 B

12345678
  1. #include "lib.h"
  2. PUBLIC int write(fd, buffer, nbytes)
  3. char *buffer;
  4. int nbytes;
  5. {
  6. return callm1(FS, WRITE, fd, nbytes, 0, buffer, NIL_PTR, NIL_PTR);
  7. }