From e6562db0423e6019154baf05beb02ff3da02f3bb Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Fri, 24 Mar 2023 16:08:46 +0100 Subject: Re-arrange repository structure --- seitan-cooker/calls.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 seitan-cooker/calls.c (limited to 'seitan-cooker/calls.c') diff --git a/seitan-cooker/calls.c b/seitan-cooker/calls.c new file mode 100644 index 0000000..74b5a06 --- /dev/null +++ b/seitan-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 + */ + +#include "cooker.h" +#include "calls.h" + +#include "calls/net.h" + +struct call *call_sets[] = { + syscalls_net, NULL, +}; -- cgit v1.2.3