From 069009f8e39238ec1a67fba6cfb287b9a0cac83e Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Fri, 24 Mar 2023 10:07:48 +0100 Subject: Re-organize project and add license header --- cooker/calls.h | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 cooker/calls.h (limited to 'cooker/calls.h') diff --git a/cooker/calls.h b/cooker/calls.h deleted file mode 100644 index 5d46e14..0000000 --- a/cooker/calls.h +++ /dev/null @@ -1,23 +0,0 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later - * Copyright 2023 Red Hat GmbH - * Author: Stefano Brivio - */ - -#ifndef CALLS_H -#define CALLS_H - -/** - * struct call - Description of one known system call - * @number: Number from __NR_ macros, architecture dependent - * @name: Name for use in recipes - * @args: NULL-terminated array of argument descriptions - */ -struct call { - long number; - const char *name; - struct arg *args; -}; - -extern struct call *call_sets[]; - -#endif /* CALLS_H */ -- cgit v1.2.3