omos-tcnj2024/sys/include/process.h

11 lines
104 B
C
Raw Normal View History

2024-02-18 16:30:09 +01:00
#ifndef PROCESS_H
#define PROCESS_H
struct process {
void *prstart;
s32 prsize;
s32 pid;
}
#endif