]> pd.if.org Git - zpackage/blobdiff - lzma/common/hardware_physmem.c
integrate lzma
[zpackage] / lzma / common / hardware_physmem.c
diff --git a/lzma/common/hardware_physmem.c b/lzma/common/hardware_physmem.c
new file mode 100644 (file)
index 0000000..7405b65
--- /dev/null
@@ -0,0 +1,25 @@
+///////////////////////////////////////////////////////////////////////////////
+//
+/// \file       hardware_physmem.c
+/// \brief      Get the total amount of physical memory (RAM)
+//
+//  Author:     Jonathan Nieder
+//
+//  This file has been put into the public domain.
+//  You can do whatever you want with this file.
+//
+///////////////////////////////////////////////////////////////////////////////
+
+#include "common.h"
+
+#include "tuklib_physmem.h"
+
+
+extern LZMA_API(uint64_t)
+lzma_physmem(void)
+{
+       // It is simpler to make lzma_physmem() a wrapper for
+       // tuklib_physmem() than to hack appropriate symbol visiblity
+       // support for the tuklib modules.
+       return tuklib_physmem();
+}