forget difference between big and small commands - obsolete with vm.
[minix.git] / commands / aal / wr_long.c
blobc5df7d8f613add0dec61fb4dd1122d10abd594c6
1 /* $Header$ */
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 "object.h"
8 wr_long(fd, l)
9 long l;
11 char buf[4];
13 put4(l, buf);
14 wr_bytes(fd, buf, 4L);