aboutgitcodelistschat:MatrixIRC
path: root/src/cooker/calls.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cooker/calls.c')
-rw-r--r--src/cooker/calls.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/cooker/calls.c b/src/cooker/calls.c
new file mode 100644
index 0000000..74b5a06
--- /dev/null
+++ b/src/cooker/calls.c
@@ -0,0 +1,18 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+/* seitan - Syscall Expressive Interpreter, Transformer and Notifier
+ *
+ * cooker/calls.c - Known syscall sets
+ *
+ * Copyright 2023 Red Hat GmbH
+ * Author: Stefano Brivio <sbrivio@redhat.com>
+ */
+
+#include "cooker.h"
+#include "calls.h"
+
+#include "calls/net.h"
+
+struct call *call_sets[] = {
+ syscalls_net, NULL,
+};