Pristine Ack-5.5
[Ack-5.5.git] / modules / src / object / wr_int2.c
1 /* $Id: wr_int2.c,v 1.5 1994/06/24 11:19:22 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 void
9 wr_int2(fd, i)
10 {
11         char buf[2];
12
13         put2(i, buf);
14         wr_bytes(fd, buf, 2L);
15 }