We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbcd5f4 commit 1bc0418Copy full SHA for 1bc0418
src/libc/header_test.c
@@ -12,6 +12,7 @@
12
#include <limits.h>
13
#include <math.h>
14
#include <setjmp.h>
15
+#include <signal.h>
16
#include <stdalign.h>
17
#include <stdarg.h>
18
#include <stdbit.h>
src/libc/include/signal.h
@@ -0,0 +1,14 @@
1
+#ifndef _SETJMP_H
2
+#define _SETJMP_H
3
+
4
+#include <cdefs.h>
5
6
+__BEGIN_DECLS
7
8
+void (*signal(int sig, void (*func)(int)))(int);
9
10
+int raise(int sig);
11
+__END_DECLS
+#endif /* _SETJMP_H */
0 commit comments