We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Both of these functions in time.c are labeled microseconds:
time.c
/* u3_time_fsc_out: unix microseconds from urbit fracto-seconds. */ c3_w u3_time_fsc_out(c3_d ufc_d) { return (c3_w) (((ufc_d >> 48ULL) * 1000000ULL) / 65536ULL); } /* u3_time_msc_out: unix microseconds from urbit fracto-seconds. */ c3_w u3_time_msc_out(c3_d ufc_d) { return (c3_w) (((ufc_d >> 48ULL) * 1000ULL) / 65536ULL); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Both of these functions in
time.c
are labeled microseconds:The text was updated successfully, but these errors were encountered: