From 90dad97fc07f049383903a166631e2c257f9b8c1 Mon Sep 17 00:00:00 2001 From: Kacper Date: Tue, 16 Dec 2025 17:02:05 +0100 Subject: Add support for TLS in the libc --- lib/libc/mqueue/mq_notify.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libc/mqueue/mq_notify.c') diff --git a/lib/libc/mqueue/mq_notify.c b/lib/libc/mqueue/mq_notify.c index a7617375..6011f567 100644 --- a/lib/libc/mqueue/mq_notify.c +++ b/lib/libc/mqueue/mq_notify.c @@ -1,11 +1,11 @@ +#include #include #include #include int mq_notify(mqd_t mqdes, const struct sigevent *notification) { - if (notification == NULL || - notification->sigev_notify != SIGEV_THREAD) { + if (notification == NULL || notification->sigev_notify != SIGEV_THREAD) { return syscall(mq_notify, mqdes, notification); } -- cgit v1.2.3