diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-12-26 13:32:20 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-12-26 13:32:20 +0100 |
commit | 26aa794b4260afcac0d4a9377c0218e474b051df (patch) | |
tree | 5aa5ac1f3f11e194a93f803882e72ce0cb0e0f20 | |
parent | 407c87d4fe49876ebdc827682aec0928400409df (diff) |
Proper C, use (void)
-rw-r--r-- | src/system/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/system/clock.c b/src/system/clock.c index 52869b4..37cedf5 100644 --- a/src/system/clock.c +++ b/src/system/clock.c @@ -3,7 +3,7 @@ /* TODO: Implement for macOS */ -static double clock_get_monotonic_seconds() { +static double clock_get_monotonic_seconds(void) { struct timespec ts; ts.tv_sec = 0; ts.tv_nsec = 0; |