mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
14 lines
262 B
C
14 lines
262 B
C
#ifndef __GLOBALS_H__
|
|
#define __GLOBALS_H__
|
|
|
|
struct global_list {
|
|
int total;
|
|
struct list_head list;
|
|
};
|
|
|
|
extern struct global_list global_vm_files;
|
|
extern struct global_list global_vm_objects;
|
|
extern struct global_list global_tasks;
|
|
|
|
#endif /* __GLOBALS_H__ */
|