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
etc/protocols - sync with NetBSD-8
[minix.git]
/
tests
/
usr.bin
/
xlint
/
lint1
/
d_c99_compound_literal_comma.c
blob
ca70694b4270eb6ff05d4ec8b7ce9ea63b809ef8
1
struct
bintime
{
2
unsigned long long
sec
;
3
unsigned long long
frac
;
4
};
5
6
struct
bintime
7
us2bintime
(
unsigned long long
us
)
8
{
9
10
return
(
struct
bintime
) {
11
.
sec
=
us
/
1000000U
,
12
.
frac
= (((
us
%
1000000U
) >>
32
)/
1000000U
) >>
32
,
13
};
14
}