aboutgitcodelistschat:MatrixIRC
path: root/cooker/calls.h
diff options
context:
space:
mode:
authorAlice Frosi <afrosi@redhat.com>2023-03-24 10:07:48 +0100
committerAlice Frosi <afrosi@redhat.com>2023-03-24 15:38:07 +0100
commit069009f8e39238ec1a67fba6cfb287b9a0cac83e (patch)
tree77f817eb7b96178b71f3d573a83cec19f7fba09c /cooker/calls.h
parent06b0f6d323c396ca1df000af96fdd07cc69b06e0 (diff)
downloadseitan-069009f8e39238ec1a67fba6cfb287b9a0cac83e.tar
seitan-069009f8e39238ec1a67fba6cfb287b9a0cac83e.tar.gz
seitan-069009f8e39238ec1a67fba6cfb287b9a0cac83e.tar.bz2
seitan-069009f8e39238ec1a67fba6cfb287b9a0cac83e.tar.lz
seitan-069009f8e39238ec1a67fba6cfb287b9a0cac83e.tar.xz
seitan-069009f8e39238ec1a67fba6cfb287b9a0cac83e.tar.zst
seitan-069009f8e39238ec1a67fba6cfb287b9a0cac83e.zip
Re-organize project and add license header
Diffstat (limited to 'cooker/calls.h')
-rw-r--r--cooker/calls.h23
1 files changed, 0 insertions, 23 deletions
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 <sbrivio@redhat.com>
- */
-
-#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 */