summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-16 18:36:14 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-16 18:36:14 -0400
commit801e08d471fa5d807063f918ce4cc724685e4604 (patch)
treee134ae74f0e238b1cd271edbbc4df1b527dbfa6e /src
parent88ee7e197314ed310e07ce0cca59742087b02114 (diff)
update includes to new file names
Diffstat (limited to 'src')
-rw-r--r--src/sys/wait/waitpid.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/sys/wait/waitpid.c b/src/sys/wait/waitpid.c
index c3892ff0..1b3cb71f 100644
--- a/src/sys/wait/waitpid.c
+++ b/src/sys/wait/waitpid.c
@@ -5,12 +5,12 @@
#include "_syscall.h"
#ifndef P_PID
-#include "signal/union_sigval.c"
-#include "signal/siginfo_t.c"
-#include "idtype_t.c"
-#include "P_PID.c"
-#include "P_PGID.c"
-#include "P_ALL.c"
+#include "signal/union_sigval.h"
+#include "signal/siginfo_t.h"
+#include "idtype_t.h"
+#include "P_PID.h"
+#include "P_PGID.h"
+#include "P_ALL.h"
#define getpgid(_pid) __syscall(__syscall_lookup(getpgid), _pid, 0, 0, 0, 0, 0)
#define waitid(_type, _id, _si, _opt) __syscall(__syscall_lookup(waitid), _type, _id, _si, _opt, 0, 0)
#endif