summaryrefslogtreecommitdiff
path: root/lib/physmem.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-12-19 08:22:18 +0000
committerJim Meyering <jim@meyering.net>2000-12-19 08:22:18 +0000
commitb4428806e7f6fb51c65de123f7c9952d927e66a8 (patch)
treedfe6ab15d0e18faa43be9d6c1cefddf9ac169d51 /lib/physmem.h
parentf82be2cc4a3a619592e4e7dec9e425dffffcca6c (diff)
downloadgnulib-b4428806e7f6fb51c65de123f7c9952d927e66a8.tar.gz
*** empty log message ***
Diffstat (limited to 'lib/physmem.h')
-rw-r--r--lib/physmem.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/physmem.h b/lib/physmem.h
new file mode 100644
index 0000000000..d9a98096f6
--- /dev/null
+++ b/lib/physmem.h
@@ -0,0 +1,19 @@
+#ifndef PHYSMEM_H_
+# define PHYSMEM_H_ 1
+
+# if HAVE_CONFIG_H
+# include <config.h>
+# endif
+
+# ifndef PARAMS
+# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
+# define PARAMS(Args) Args
+# else
+# define PARAMS(Args) ()
+# endif
+# endif
+
+double physmem_total PARAMS ((void));
+double physmem_available PARAMS ((void));
+
+#endif /* PHYSMEM_H_ */