From ca7e92bd78368befa88a3a6d732d1595c388c660 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Sat, 4 Feb 2023 18:03:17 +0100 Subject: Use strict function prototypes also for defintions freebsd/Platform.c:151:23: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] int Platform_getUptime() { ^ void --- openbsd/Platform.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'openbsd') diff --git a/openbsd/Platform.c b/openbsd/Platform.c index 24e8aca1..1ce5ba19 100644 --- a/openbsd/Platform.c +++ b/openbsd/Platform.c @@ -143,7 +143,7 @@ void Platform_setBindings(Htop_Action* keys) { (void) keys; } -int Platform_getUptime() { +int Platform_getUptime(void) { struct timeval bootTime, currTime; const int mib[2] = { CTL_KERN, KERN_BOOTTIME }; size_t size = sizeof(bootTime); @@ -174,7 +174,7 @@ void Platform_getLoadAverage(double* one, double* five, double* fifteen) { *fifteen = (double) loadAverage.ldavg[2] / loadAverage.fscale; } -int Platform_getMaxPid() { +int Platform_getMaxPid(void) { return 2 * THREAD_PID_OFFSET; } -- cgit v1.2.3