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
commitbca787f7c476396a0a067e0f418d840b2a582945 (patch)
tree3297d6289f8940168b1c0eaa5883c6bcfc444e4e /lib/physmem.h
parent258f00968a8e28ae7f69d9cae58094f2f9e988bb (diff)
downloadcoreutils-bca787f7c476396a0a067e0f418d840b2a582945.tar.xz
*** 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 000000000..d9a98096f
--- /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_ */