End the _t nonsense

This commit is contained in:
2026-04-01 09:15:59 +02:00
parent e8a0a36889
commit e9b57f70b1
17 changed files with 59 additions and 59 deletions
+2 -2
View File
@@ -36,7 +36,7 @@ struct idtr {
// All general-purpose registers (except rsp) as stored on the stack,
// plus the values we pushed (vector number, error code) and the iret frame
// In reverse order because the stack grows downwards.
struct cpu_status_t {
struct cpu_status {
uint64_t r15;
uint64_t r14;
uint64_t r13;
@@ -63,6 +63,6 @@ struct cpu_status_t {
uint64_t iret_ss;
};
struct cpu_status_t* syscall_handler(struct cpu_status_t* regs);
struct cpu_status* syscall_handler(struct cpu_status* regs);
#endif