summaryrefslogtreecommitdiff
path: root/toxcore/mono_time.h
diff options
context:
space:
mode:
Diffstat (limited to 'toxcore/mono_time.h')
-rw-r--r--toxcore/mono_time.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toxcore/mono_time.h b/toxcore/mono_time.h
index b735f2c3..c2934d06 100644
--- a/toxcore/mono_time.h
+++ b/toxcore/mono_time.h
@@ -50,9 +50,9 @@ uint64_t mono_time_get(const Mono_Time *mono_time);
50bool mono_time_is_timeout(const Mono_Time *mono_time, uint64_t timestamp, uint64_t timeout); 50bool mono_time_is_timeout(const Mono_Time *mono_time, uint64_t timestamp, uint64_t timeout);
51 51
52/* return current monotonic time in milliseconds (ms). */ 52/* return current monotonic time in milliseconds (ms). */
53uint64_t current_time_monotonic(const Mono_Time *mono_time); 53uint64_t current_time_monotonic(Mono_Time *mono_time);
54 54
55typedef uint64_t mono_time_current_time_cb(void *user_data); 55typedef uint64_t mono_time_current_time_cb(Mono_Time *mono_time, void *user_data);
56 56
57/* Override implementation of current_time_monotonic() (for tests). 57/* Override implementation of current_time_monotonic() (for tests).
58 * 58 *