diff options
author | DJ Delorie <dj@redhat.com> | 2003-02-21 17:33:57 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2003-02-21 17:33:57 +0000 |
commit | 900d2082a9fa61194c632af00bfe020f873c4705 (patch) | |
tree | 7a329c93bc3c8f7402bfecae2a69bfaf6baca1df /libiberty/physmem.c | |
parent | 50ceaba595a68515f995c352bd8028036ca8b422 (diff) | |
download | gdb-900d2082a9fa61194c632af00bfe020f873c4705.zip gdb-900d2082a9fa61194c632af00bfe020f873c4705.tar.gz gdb-900d2082a9fa61194c632af00bfe020f873c4705.tar.bz2 |
merge from gcc
Diffstat (limited to 'libiberty/physmem.c')
-rw-r--r-- | libiberty/physmem.c | 4 |
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 { |