From c3952e7c20a3108c2f16aa579f8062dfc2163bd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Tue, 8 Sep 2020 14:28:34 +0200 Subject: Use strict function prototypes int foo(); declares a function taking any number of arguments. --- solaris/Platform.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'solaris') diff --git a/solaris/Platform.h b/solaris/Platform.h index dd8614dc..29cc7964 100644 --- a/solaris/Platform.h +++ b/solaris/Platform.h @@ -45,11 +45,11 @@ extern int Platform_numberOfFields; extern char Process_pidFormat[20]; -int Platform_getUptime(); +int Platform_getUptime(void); void Platform_getLoadAverage(double* one, double* five, double* fifteen); -int Platform_getMaxPid(); +int Platform_getMaxPid(void); double Platform_setCPUValues(Meter* this, int cpu); -- cgit v1.2.3