Pristine Ack-5.5
[Ack-5.5.git] / modules / src / object / rd_int2.c
1 /* $Id: rd_int2.c,v 1.5 1994/06/24 11:19:02 ceriel Exp $ */
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 "obj.h"
7
8 int
9 rd_int2(fd)
10 {
11         char buf[2];
12
13         rd_bytes(fd, buf, 2L);
14         return get2(buf);
15 }