Last change
on this file since 108911 was 108911, checked in by vboxsync, 4 weeks ago |
libs/liblzma: Applied and adjusted our liblzma changes to 5.8.1 and export to OSE. jiraref:VBP-1635
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
-
Property sync-process
set to
export
|
File size:
614 bytes
|
Line | |
---|
1 | // SPDX-License-Identifier: 0BSD
|
---|
2 |
|
---|
3 | ///////////////////////////////////////////////////////////////////////////////
|
---|
4 | //
|
---|
5 | /// \file hardware_physmem.c
|
---|
6 | /// \brief Get the total amount of physical memory (RAM)
|
---|
7 | //
|
---|
8 | // Author: Jonathan Nieder
|
---|
9 | //
|
---|
10 | ///////////////////////////////////////////////////////////////////////////////
|
---|
11 |
|
---|
12 | #include "common.h"
|
---|
13 |
|
---|
14 | #include "tuklib_physmem.h"
|
---|
15 |
|
---|
16 |
|
---|
17 | extern LZMA_API(uint64_t)
|
---|
18 | lzma_physmem(void)
|
---|
19 | {
|
---|
20 | // It is simpler to make lzma_physmem() a wrapper for
|
---|
21 | // tuklib_physmem() than to hack appropriate symbol visibility
|
---|
22 | // support for the tuklib modules.
|
---|
23 | return tuklib_physmem();
|
---|
24 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.