aboutsummaryrefslogtreecommitdiff
path: root/libiberty/physmem.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2003-02-21 05:02:44 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2003-02-21 05:02:44 +0000
commite9019af61669bd7fcb58f6b2e1f0f7c8a0a3ad13 (patch)
treed6017c7cccb6f1e952410665f9616f86c192fdd4 /libiberty/physmem.c
parenta7582c8ca828dd95b402317e4d368fa31ca27d48 (diff)
downloadgcc-e9019af61669bd7fcb58f6b2e1f0f7c8a0a3ad13.zip
gcc-e9019af61669bd7fcb58f6b2e1f0f7c8a0a3ad13.tar.gz
gcc-e9019af61669bd7fcb58f6b2e1f0f7c8a0a3ad13.tar.bz2
physmem.c (physmem_total, [...]): De-ANSI-fy.
* physmem.c (physmem_total, physmem_available): De-ANSI-fy. * configure.in (AC_CHECK_FUNCS): Add pstat_getstatic and pstat_getdynamic. From-SVN: r63203
Diffstat (limited to 'libiberty/physmem.c')
-rw-r--r--libiberty/physmem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/physmem.c b/libiberty/physmem.c
index c540d18..6954261 100644
--- a/libiberty/physmem.c
+++ b/libiberty/physmem.c
@@ -31,7 +31,7 @@
/* Return the total amount of physical memory. */
double
-physmem_total (void)
+physmem_total ()
{
#if defined _SC_PHYS_PAGES && defined _SC_PAGESIZE
{
@@ -61,7 +61,7 @@ physmem_total (void)
/* Return the amount of physical memory available. */
double
-physmem_available (void)
+physmem_available ()
{
#if defined _SC_AVPHYS_PAGES && defined _SC_PAGESIZE
{