aboutgitcodelistschat:MatrixIRC
path: root/src/cooker/calls.c
blob: 74b5a06a2fa04e22aed4bbda50ea85ee1cee30e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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,
};