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

11 lines
99 B
C

#include "object.h"
int
rd_int2(fd)
{
char buf[2];
rd_bytes(fd, buf, 2L);
return get2(buf);
}