source: trunk/minix/commands/aal/wr_long.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 363 bytes
Line 
1/* $Header: /cvsup/minix/src/commands/aal/wr_long.c,v 1.1.1.1 2005/04/21 14:53:58 beng 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 "object.h"
7
8wr_long(fd, l)
9 long l;
10{
11 char buf[4];
12
13 put4(l, buf);
14 wr_bytes(fd, buf, 4L);
15}
Note: See TracBrowser for help on using the repository browser.