diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/sys/sysinfo.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/sys/sysinfo.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sysdeps/unix/sysv/linux/sys/sysinfo.h b/sysdeps/unix/sysv/linux/sys/sysinfo.h index dc435d6651..2c17cf2a69 100644 --- a/sysdeps/unix/sysv/linux/sys/sysinfo.h +++ b/sysdeps/unix/sysv/linux/sys/sysinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -31,20 +31,16 @@ extern int sysinfo __P ((struct sysinfo *__info)); /* Return number of configured processors. */ -extern int __get_nprocs_conf __P ((void)); extern int get_nprocs_conf __P ((void)); /* Return number of available processors. */ -extern int __get_nprocs __P ((void)); extern int get_nprocs __P ((void)); /* Return number of physical pages of memory in the system. */ -extern int __get_phys_pages __P ((void)); extern int get_phys_pages __P ((void)); /* Return number of available physical pages of memory in the system. */ -extern int __get_avphys_pages __P ((void)); extern int get_avphys_pages __P ((void)); __END_DECLS |