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
vm: include no-caching bits in PTF_ALLFLAGS for flags sanity check.
[minix.git]
/
commands
/
autil
/
rd_unsig2.c
blob
4e4ad74859bbe448e3c45fd2e17e66ed4bfae96e
1
/* $Id$ */
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
"obj.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
}