aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2021-12-21 19:37:52 -0800
committerChristian Cunningham <cc@localhost>2021-12-21 19:37:52 -0800
commit8e52f3ff03eeaac35a9d7a792cdedff6a92434b4 (patch)
tree2519fee43cf68146b462a0968eabe45e82eb06ef /src
parentcf2618101ef832a9652d84b43ed5f558da401248 (diff)
Move .a.h to .h
Diffstat (limited to 'src')
-rw-r--r--src/cpu/atomic/swap.h (renamed from src/cpu/atomic/swap.a.h)0
-rw-r--r--src/util/mutex.c2
2 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/atomic/swap.a.h b/src/cpu/atomic/swap.h
index 5e8ff57..5e8ff57 100644
--- a/src/cpu/atomic/swap.a.h
+++ b/src/cpu/atomic/swap.h
diff --git a/src/util/mutex.c b/src/util/mutex.c
index 98dc849..9cfdf6c 100644
--- a/src/util/mutex.c
+++ b/src/util/mutex.c
@@ -1,5 +1,5 @@
#include "../util/mutex.h"
-#include "../cpu/atomic/swap.a.h"
+#include "../cpu/atomic/swap.h"
unsigned char lock_mutex(struct Mutex* m, unsigned long pid) {
if (m->pid == NULL_PID) {