summaryrefslogtreecommitdiff
path: root/libc/misc/getsysstats.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/misc/getsysstats.c')
-rw-r--r--libc/misc/getsysstats.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/misc/getsysstats.c b/libc/misc/getsysstats.c
index 83b07cafe..d6f9df59d 100644
--- a/libc/misc/getsysstats.c
+++ b/libc/misc/getsysstats.c
@@ -21,7 +21,7 @@
#include <sys/sysinfo.h>
int
-__get_nprocs_conf ()
+__get_nprocs_conf (void)
{
/* We don't know how to determine the number. Simply return always 1. */
return 1;
@@ -33,7 +33,7 @@ link_warning (get_nprocs_conf, "warning: get_nprocs_conf will always return 1")
int
-__get_nprocs ()
+__get_nprocs (void)
{
/* We don't know how to determine the number. Simply return always 1. */
return 1;
@@ -44,7 +44,7 @@ link_warning (get_nprocs, "warning: get_nprocs will always return 1")
long int
-__get_phys_pages ()
+__get_phys_pages (void)
{
/* We have no general way to determine this value. */
__set_errno (ENOSYS);
@@ -56,7 +56,7 @@ stub_warning (get_phys_pages)
long int
-__get_avphys_pages ()
+__get_avphys_pages (void)
{
/* We have no general way to determine this value. */
__set_errno (ENOSYS);