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
Remove building with NOCRYPTO option
[minix.git]
/
tests
/
usr.bin
/
xlint
/
lint1
/
d_cvt_in_ternary.c
blob
4a6149c6722417d4fb08054c2e5ad3cdb14e842d
1
/* CVT node handling in ?: operator */
2
typedef
unsigned long int size_t
;
3
struct
filecore_direntry
{
4
unsigned
len
:
32
;
5
};
6
int
7
main
(
void
)
8
{
9
struct
filecore_direntry dirent
= {
0
};
10
size_t
uio_resid
=
0
;
11
size_t
bytelen
= (((
dirent
.
len
)<(
uio_resid
))?(
dirent
.
len
):(
uio_resid
));
12
return
bytelen
;
13
}