diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-09 21:17:12 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-09 21:17:12 +0100 |
| commit | b5cd18739a64c8d923a55b61c89ae3900faafd84 (patch) | |
| tree | d192f7b25257ae9a8a4760c68f5314dcbc0d9b91 /lib/libc/signal/pthread_kill.c | |
| parent | 119aed5bc787ccbf23d2f151759ec1f3a80977e1 (diff) | |
Fix include paths and formatting inconsistencies
Diffstat (limited to 'lib/libc/signal/pthread_kill.c')
| -rw-r--r-- | lib/libc/signal/pthread_kill.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/libc/signal/pthread_kill.c b/lib/libc/signal/pthread_kill.c index 9323a869..d6855c0c 100644 --- a/lib/libc/signal/pthread_kill.c +++ b/lib/libc/signal/pthread_kill.c @@ -1,6 +1,9 @@ -#include <thread.h> -#include <asm-generic/signal.h> -#include <syscall.h> +#include "asm/unistd_64.h" // for __NR_tkill +#include "errno.h" // for EINVAL + +#include <asm-generic/signal.h> // for _NSIG +#include <syscall.h> // for __syscall_2, syscall +#include <thread.h> // for __thread_self typedef struct __thread_self *pthread_t; |
