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
+3 -3
View File
@@ -10,13 +10,13 @@
#include <stdbool.h>
#include <stdint.h>
struct spinlock_t
struct spinlock
{
bool locked;
uint64_t rflags;
};
void spinlock_acquire(struct spinlock_t* lock);
void spinlock_release(struct spinlock_t* lock);
void spinlock_acquire(struct spinlock* lock);
void spinlock_release(struct spinlock* lock);
#endif