Blame gnulib/physmem.h

Packit Service 392537
/* Calculate the size of physical memory.
Packit Service 392537
Packit Service 392537
   Copyright (C) 2000, 2003, 2009-2016 Free Software Foundation, Inc.
Packit Service 392537
Packit Service 392537
   This program is free software: you can redistribute it and/or modify
Packit Service 392537
   it under the terms of the GNU General Public License as published by
Packit Service 392537
   the Free Software Foundation; either version 3 of the License, or
Packit Service 392537
   (at your option) any later version.
Packit Service 392537
Packit Service 392537
   This program is distributed in the hope that it will be useful,
Packit Service 392537
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 392537
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service 392537
   GNU General Public License for more details.
Packit Service 392537
Packit Service 392537
   You should have received a copy of the GNU General Public License
Packit Service 392537
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
Packit Service 392537
Packit Service 392537
/* Written by Paul Eggert.  */
Packit Service 392537
Packit Service 392537
#ifndef PHYSMEM_H_
Packit Service 392537
# define PHYSMEM_H_ 1
Packit Service 392537
Packit Service 392537
double physmem_total (void);
Packit Service 392537
double physmem_available (void);
Packit Service 392537
Packit Service 392537
#endif /* PHYSMEM_H_ */