mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-18 22:33:56 -07:00
- /* */ -> // - clarified expressions - add casts - func() -> func(void) - signed/unsigned This was SVN commit r1772.
9 lines
118 B
C
Executable file
9 lines
118 B
C
Executable file
//
|
|
// mem
|
|
//
|
|
|
|
extern size_t tot_mem;
|
|
extern size_t avl_mem;
|
|
|
|
// updates *_mem above
|
|
extern void get_mem_status(void);
|