tack/modules/src/object/wr_long.c
1987-01-05 17:31:38 +00:00

11 lines
103 B
C

#include "object.h"
wr_long(fd, l)
long l;
{
char buf[4];
put4(l, buf);
wr_bytes(fd, buf, 4L);
}