1207753Smm///////////////////////////////////////////////////////////////////////////////
2207753Smm//
3207753Smm/// \file       tuklib_physmem.h
4207753Smm/// \brief      Get the amount of physical memory
5207753Smm//
6207753Smm//  Author:     Lasse Collin
7207753Smm//
8207753Smm//  This file has been put into the public domain.
9207753Smm//  You can do whatever you want with this file.
10207753Smm//
11207753Smm///////////////////////////////////////////////////////////////////////////////
12207753Smm
13207753Smm#ifndef TUKLIB_PHYSMEM_H
14207753Smm#define TUKLIB_PHYSMEM_H
15207753Smm
16207753Smm#include "tuklib_common.h"
17207753SmmTUKLIB_DECLS_BEGIN
18207753Smm
19207753Smm#define tuklib_physmem TUKLIB_SYMBOL(tuklib_physmem)
20207753Smmextern uint64_t tuklib_physmem(void);
21207753Smm///<
22207753Smm/// \brief      Get the amount of physical memory in bytes
23207753Smm///
24207753Smm/// \return     Amount of physical memory in bytes. On error, zero is
25207753Smm///             returned.
26207753Smm
27207753SmmTUKLIB_DECLS_END
28207753Smm#endif
29