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
fix for asmconv - stop translating after .sect .end.
[minix.git]
/
commands
/
aal
/
wr_int2.c
blob
39966b183c830c74a0138bcf288c4fa771d6908a
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_int2
(
fd
,
i
)
9
{
10
char
buf
[
2
];
11
12
put2
(
i
,
buf
);
13
wr_bytes
(
fd
,
buf
,
2L
);
14
}