mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
13 lines
139 B
C
13 lines
139 B
C
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
struct system_t
|
|
{
|
|
time_t uptime;
|
|
dword nprocess;
|
|
dword nblocked;
|
|
};
|
|
|
|
extern system_t system;
|