diff options
author | Christian Cunningham <cc@localhost> | 2021-12-21 19:37:52 -0800 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2021-12-21 19:37:52 -0800 |
commit | 8e52f3ff03eeaac35a9d7a792cdedff6a92434b4 (patch) | |
tree | 2519fee43cf68146b462a0968eabe45e82eb06ef /src/util/mutex.c | |
parent | cf2618101ef832a9652d84b43ed5f558da401248 (diff) |
Move .a.h to .h
Diffstat (limited to 'src/util/mutex.c')
-rw-r--r-- | src/util/mutex.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |