Remove building with NOCRYPTO option
[minix.git] / tests / usr.bin / xlint / lint1 / d_c99_compound_literal_comma.c
blobca70694b4270eb6ff05d4ec8b7ce9ea63b809ef8
1 struct bintime {
2 unsigned long long sec;
3 unsigned long long frac;
4 };
6 struct bintime
7 us2bintime(unsigned long long us)
10 return (struct bintime) {
11 .sec = us / 1000000U,
12 .frac = (((us % 1000000U) >> 32)/1000000U) >> 32,