wr_long.c 282 B

123456789101112131415
  1. /* $Header$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. #include "object.h"
  7. wr_long(fd, l)
  8. long l;
  9. {
  10. char buf[4];
  11. put4(l, buf);
  12. wr_bytes(fd, buf, 4L);
  13. }