repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
forget difference between big and small commands - obsolete with vm.
[minix.git]
/
commands
/
aal
/
wr_long.c
blob
c5df7d8f613add0dec61fb4dd1122d10abd594c6
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"
7
8
wr_long
(
fd
,
l
)
9
long
l
;
10
{
11
char
buf
[
4
];
12
13
put4
(
l
,
buf
);
14
wr_bytes
(
fd
,
buf
,
4L
);
15
}