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

11 lines
100 B
C

#include "object.h"
long
rd_long(fd)
{
char buf[4];
rd_bytes(fd, buf, 4L);
return get4(buf);
}