summaryrefslogtreecommitdiff
path: root/src/monotonic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/monotonic.h')
-rw-r--r--src/monotonic.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/monotonic.h b/src/monotonic.h
index 32cf70638..b465f90b1 100644
--- a/src/monotonic.h
+++ b/src/monotonic.h
@@ -33,13 +33,13 @@ typedef enum monotonic_clock_type {
* needs to be called once, it may be called additional times without impact.
* Returns a printable string indicating the type of clock initialized.
* (The returned string is static and doesn't need to be freed.) */
-const char *monotonicInit();
+const char *monotonicInit(void);
/* Return a string indicating the type of monotonic clock being used. */
-const char *monotonicInfoString();
+const char *monotonicInfoString(void);
/* Return the type of monotonic clock being used. */
-monotonic_clock_type monotonicGetType();
+monotonic_clock_type monotonicGetType(void);
/* Functions to measure elapsed time. Example:
* monotime myTimer;