aboutsummaryrefslogtreecommitdiff
path: root/src/time.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/time.rs')
-rw-r--r--src/time.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/time.rs b/src/time.rs
index 7d402f4..eff567d 100644
--- a/src/time.rs
+++ b/src/time.rs
@@ -42,4 +42,4 @@ pub unsafe fn rdtscp() -> u64 {
asm!("rdtscp" : "={eax}" (low), "={edx}" (high) ::: "volatile");
((high as u64) << 32) | (low as u64)
-} \ No newline at end of file
+}