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
re-enable munmap().
[minix.git]
/
commands
/
aal
/
rd_unsig2.c
blob
13a816f065e23f67fcb9199f623db486694c896b
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
unsigned int
9
rd_unsigned2
(
fd
)
10
{
11
char
buf
[
2
];
12
13
rd_bytes
(
fd
,
buf
,
2L
);
14
return
uget2
(
buf
);
15
}