Newer
Older
ubixos / contrib / netbsd-tests / usr.bin / xlint / lint1 / d_c99_compound_literal_comma.c
@Charlie Root Charlie Root on 31 Dec 2017 233 bytes More Cleanup
struct bintime {
	unsigned long long sec;
	unsigned long long frac;
};

struct bintime
us2bintime(unsigned long long us)
{

	return (struct bintime) {
		.sec = us / 1000000U,
		.frac = (((us % 1000000U) >> 32)/1000000U) >> 32,
	};
}