15 lines
252 B
C
15 lines
252 B
C
|
/* bits/memstat.h: The membuf structure for memstat(). */
|
||
|
|
||
|
#ifndef _BITS_MEMSTAT_H
|
||
|
#define _BITS_MEMSTAT_H
|
||
|
|
||
|
struct membuf
|
||
|
{
|
||
|
unsigned long mem_total;
|
||
|
unsigned long mem_used;
|
||
|
unsigned long mem_free;
|
||
|
unsigned long mem_reserved;
|
||
|
};
|
||
|
|
||
|
#endif
|