We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f216c4 commit 53c3abcCopy full SHA for 53c3abc
1 file changed
tests/regression/03-practical/39-signal-arg.c
@@ -0,0 +1,11 @@
1
+#include <signal.h>
2
+#include <goblint.h>
3
+
4
+void handler(int sig) {
5
+ __goblint_check(sig == SIGTERM);
6
+}
7
8
+int main() {
9
+ signal(SIGTERM, handler);
10
+ return 0;
11
0 commit comments