From 9bce574768cb188a0c2d4c3107083ef214db0e51 Mon Sep 17 00:00:00 2001 From: Anton Kochkov Date: Mon, 8 Mar 2021 13:21:40 +0800 Subject: [PATCH] Add some missing copyright marks --- librz/asm/arch/pyc/opcode.c | 2 ++ librz/asm/arch/pyc/opcode_10.c | 2 ++ librz/asm/arch/pyc/opcode_11.c | 1 + librz/asm/arch/pyc/opcode_12.c | 2 ++ librz/asm/arch/pyc/opcode_13.c | 2 ++ librz/asm/arch/pyc/opcode_14.c | 2 ++ librz/asm/arch/pyc/opcode_15.c | 2 ++ librz/asm/arch/pyc/opcode_16.c | 2 ++ librz/asm/arch/pyc/opcode_20.c | 2 ++ librz/asm/arch/pyc/opcode_21.c | 2 ++ librz/asm/arch/pyc/opcode_22.c | 2 ++ librz/asm/arch/pyc/opcode_23.c | 2 ++ librz/asm/arch/pyc/opcode_24.c | 2 ++ librz/asm/arch/pyc/opcode_25.c | 2 ++ librz/asm/arch/pyc/opcode_26.c | 2 ++ librz/asm/arch/pyc/opcode_27.c | 2 ++ librz/asm/arch/pyc/opcode_2x.c | 2 ++ librz/asm/arch/pyc/opcode_30.c | 2 ++ librz/asm/arch/pyc/opcode_31.c | 2 ++ librz/asm/arch/pyc/opcode_32.c | 2 ++ librz/asm/arch/pyc/opcode_33.c | 2 ++ librz/asm/arch/pyc/opcode_34.c | 2 ++ librz/asm/arch/pyc/opcode_35.c | 2 ++ librz/asm/arch/pyc/opcode_36.c | 2 ++ librz/asm/arch/pyc/opcode_37.c | 2 ++ librz/asm/arch/pyc/opcode_38.c | 2 ++ librz/asm/arch/pyc/opcode_39.c | 2 ++ librz/asm/arch/pyc/opcode_3x.c | 2 ++ librz/asm/arch/pyc/opcode_analysis.c | 2 ++ librz/asm/arch/pyc/opcode_arg_fmt.c | 2 ++ librz/bin/pdb/dbi.c | 2 ++ librz/bin/pdb/fpo.c | 2 ++ librz/bin/pdb/gdata.c | 2 ++ librz/config/serialize_config.c | 1 + librz/core/cagraph.c | 4 +++- librz/core/cautocmpl.c | 1 + librz/core/cdebug.c | 3 +++ librz/core/cmd_interpret.c | 4 +++- librz/core/cmd_plugins.c | 2 ++ librz/core/cmd_remote.c | 6 +++++- librz/core/cmd_tasks.c | 1 + librz/core/seek.c | 2 ++ librz/core/serialize_core.c | 1 + librz/flag/serialize_flag.c | 1 + librz/util/big.c | 2 +- shlr/rar/cpu.c | 4 ++-- 46 files changed, 91 insertions(+), 6 deletions(-) diff --git a/librz/asm/arch/pyc/opcode.c b/librz/asm/arch/pyc/opcode.c index eb674a8a3b9..477cb20b540 100644 --- a/librz/asm/arch/pyc/opcode.c +++ b/librz/asm/arch/pyc/opcode.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" static version_opcode version_op[] = { diff --git a/librz/asm/arch/pyc/opcode_10.c b/librz/asm/arch/pyc/opcode_10.c index c2d6a06e6ac..80698ee3aae 100644 --- a/librz/asm/arch/pyc/opcode_10.c +++ b/librz/asm/arch/pyc/opcode_10.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_10(void) { diff --git a/librz/asm/arch/pyc/opcode_11.c b/librz/asm/arch/pyc/opcode_11.c index 58d6d211821..1f93bcf4e78 100644 --- a/librz/asm/arch/pyc/opcode_11.c +++ b/librz/asm/arch/pyc/opcode_11.c @@ -1,3 +1,4 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only #include "opcode.h" diff --git a/librz/asm/arch/pyc/opcode_12.c b/librz/asm/arch/pyc/opcode_12.c index 8b963d2f209..128b9671b53 100644 --- a/librz/asm/arch/pyc/opcode_12.c +++ b/librz/asm/arch/pyc/opcode_12.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_12(void) { diff --git a/librz/asm/arch/pyc/opcode_13.c b/librz/asm/arch/pyc/opcode_13.c index 87f639bbcc8..da183bbc3fb 100644 --- a/librz/asm/arch/pyc/opcode_13.c +++ b/librz/asm/arch/pyc/opcode_13.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_13(void) { diff --git a/librz/asm/arch/pyc/opcode_14.c b/librz/asm/arch/pyc/opcode_14.c index e98195621c6..f828107eac3 100644 --- a/librz/asm/arch/pyc/opcode_14.c +++ b/librz/asm/arch/pyc/opcode_14.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_14(void) { diff --git a/librz/asm/arch/pyc/opcode_15.c b/librz/asm/arch/pyc/opcode_15.c index ec016db9908..d90c7c21b19 100644 --- a/librz/asm/arch/pyc/opcode_15.c +++ b/librz/asm/arch/pyc/opcode_15.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_15(void) { diff --git a/librz/asm/arch/pyc/opcode_16.c b/librz/asm/arch/pyc/opcode_16.c index 4174279a674..a4dbbdc2f1f 100644 --- a/librz/asm/arch/pyc/opcode_16.c +++ b/librz/asm/arch/pyc/opcode_16.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_16(void) { diff --git a/librz/asm/arch/pyc/opcode_20.c b/librz/asm/arch/pyc/opcode_20.c index 20218917311..f8023c3fa27 100644 --- a/librz/asm/arch/pyc/opcode_20.c +++ b/librz/asm/arch/pyc/opcode_20.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_20(void) { diff --git a/librz/asm/arch/pyc/opcode_21.c b/librz/asm/arch/pyc/opcode_21.c index 14645ac6768..3137e29d401 100644 --- a/librz/asm/arch/pyc/opcode_21.c +++ b/librz/asm/arch/pyc/opcode_21.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_21(void) { diff --git a/librz/asm/arch/pyc/opcode_22.c b/librz/asm/arch/pyc/opcode_22.c index 9d5ff3f9cf2..2b0a9db2d7e 100644 --- a/librz/asm/arch/pyc/opcode_22.c +++ b/librz/asm/arch/pyc/opcode_22.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_22(void) { diff --git a/librz/asm/arch/pyc/opcode_23.c b/librz/asm/arch/pyc/opcode_23.c index e600656fd68..7de273a2485 100644 --- a/librz/asm/arch/pyc/opcode_23.c +++ b/librz/asm/arch/pyc/opcode_23.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_23(void) { diff --git a/librz/asm/arch/pyc/opcode_24.c b/librz/asm/arch/pyc/opcode_24.c index bedcb65059f..ba25ca47e12 100644 --- a/librz/asm/arch/pyc/opcode_24.c +++ b/librz/asm/arch/pyc/opcode_24.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_24(void) { diff --git a/librz/asm/arch/pyc/opcode_25.c b/librz/asm/arch/pyc/opcode_25.c index 44fe1e56de0..759d8e17c4b 100644 --- a/librz/asm/arch/pyc/opcode_25.c +++ b/librz/asm/arch/pyc/opcode_25.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_25(void) { diff --git a/librz/asm/arch/pyc/opcode_26.c b/librz/asm/arch/pyc/opcode_26.c index 13de0b111c0..73ee3b970f4 100644 --- a/librz/asm/arch/pyc/opcode_26.c +++ b/librz/asm/arch/pyc/opcode_26.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_26(void) { diff --git a/librz/asm/arch/pyc/opcode_27.c b/librz/asm/arch/pyc/opcode_27.c index ac598586f1a..8845ba804be 100644 --- a/librz/asm/arch/pyc/opcode_27.c +++ b/librz/asm/arch/pyc/opcode_27.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_27(void) { diff --git a/librz/asm/arch/pyc/opcode_2x.c b/librz/asm/arch/pyc/opcode_2x.c index 02964ad0ee7..e4dec3d52e1 100644 --- a/librz/asm/arch/pyc/opcode_2x.c +++ b/librz/asm/arch/pyc/opcode_2x.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_2x(void) { diff --git a/librz/asm/arch/pyc/opcode_30.c b/librz/asm/arch/pyc/opcode_30.c index 07d734c862a..3917147f484 100644 --- a/librz/asm/arch/pyc/opcode_30.c +++ b/librz/asm/arch/pyc/opcode_30.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_30(void) { diff --git a/librz/asm/arch/pyc/opcode_31.c b/librz/asm/arch/pyc/opcode_31.c index 572dfdb020c..68537d051bd 100644 --- a/librz/asm/arch/pyc/opcode_31.c +++ b/librz/asm/arch/pyc/opcode_31.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_31(void) { diff --git a/librz/asm/arch/pyc/opcode_32.c b/librz/asm/arch/pyc/opcode_32.c index 41e11242584..c3f45224e49 100644 --- a/librz/asm/arch/pyc/opcode_32.c +++ b/librz/asm/arch/pyc/opcode_32.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_32(void) { diff --git a/librz/asm/arch/pyc/opcode_33.c b/librz/asm/arch/pyc/opcode_33.c index 2dd6a3b5f1b..a83d9de66ef 100644 --- a/librz/asm/arch/pyc/opcode_33.c +++ b/librz/asm/arch/pyc/opcode_33.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_33(void) { diff --git a/librz/asm/arch/pyc/opcode_34.c b/librz/asm/arch/pyc/opcode_34.c index 547b9f67102..37e9cf25218 100644 --- a/librz/asm/arch/pyc/opcode_34.c +++ b/librz/asm/arch/pyc/opcode_34.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_34(void) { diff --git a/librz/asm/arch/pyc/opcode_35.c b/librz/asm/arch/pyc/opcode_35.c index 1e5a44c71ab..c8058a69a13 100644 --- a/librz/asm/arch/pyc/opcode_35.c +++ b/librz/asm/arch/pyc/opcode_35.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_35(void) { diff --git a/librz/asm/arch/pyc/opcode_36.c b/librz/asm/arch/pyc/opcode_36.c index 115cfe17dc5..d859e576036 100644 --- a/librz/asm/arch/pyc/opcode_36.c +++ b/librz/asm/arch/pyc/opcode_36.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_36(void) { diff --git a/librz/asm/arch/pyc/opcode_37.c b/librz/asm/arch/pyc/opcode_37.c index a5b365612f5..5408c36beb9 100644 --- a/librz/asm/arch/pyc/opcode_37.c +++ b/librz/asm/arch/pyc/opcode_37.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_37(void) { diff --git a/librz/asm/arch/pyc/opcode_38.c b/librz/asm/arch/pyc/opcode_38.c index 7244eb773bd..5e6e902ea91 100644 --- a/librz/asm/arch/pyc/opcode_38.c +++ b/librz/asm/arch/pyc/opcode_38.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_38(void) { diff --git a/librz/asm/arch/pyc/opcode_39.c b/librz/asm/arch/pyc/opcode_39.c index 031e6c16f56..33ef6d59f8d 100644 --- a/librz/asm/arch/pyc/opcode_39.c +++ b/librz/asm/arch/pyc/opcode_39.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_39(void) { diff --git a/librz/asm/arch/pyc/opcode_3x.c b/librz/asm/arch/pyc/opcode_3x.c index 164f29a10bf..2863f25ce46 100644 --- a/librz/asm/arch/pyc/opcode_3x.c +++ b/librz/asm/arch/pyc/opcode_3x.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" pyc_opcodes *opcode_3x(void) { diff --git a/librz/asm/arch/pyc/opcode_analysis.c b/librz/asm/arch/pyc/opcode_analysis.c index 6b67928303a..8c58ffa7b84 100644 --- a/librz/asm/arch/pyc/opcode_analysis.c +++ b/librz/asm/arch/pyc/opcode_analysis.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" // The actual code of one opcode varies across the versions. diff --git a/librz/asm/arch/pyc/opcode_arg_fmt.c b/librz/asm/arch/pyc/opcode_arg_fmt.c index 700819960b8..33a728cce46 100644 --- a/librz/asm/arch/pyc/opcode_arg_fmt.c +++ b/librz/asm/arch/pyc/opcode_arg_fmt.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only + #include "opcode.h" const char *format_extended_arg(ut32 oparg) { diff --git a/librz/bin/pdb/dbi.c b/librz/bin/pdb/dbi.c index e3f37f1bfb9..7b48bc83695 100644 --- a/librz/bin/pdb/dbi.c +++ b/librz/bin/pdb/dbi.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2014-2020 inisider // SPDX-License-Identifier: LGPL-3.0-only + #include "types.h" #include "dbi.h" #include "stream_file.h" diff --git a/librz/bin/pdb/fpo.c b/librz/bin/pdb/fpo.c index 9dc6f7092b3..4a92d6abcb9 100644 --- a/librz/bin/pdb/fpo.c +++ b/librz/bin/pdb/fpo.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2014-2020 inisider // SPDX-License-Identifier: LGPL-3.0-only + #include "types.h" #include "fpo.h" #include "stream_file.h" diff --git a/librz/bin/pdb/gdata.c b/librz/bin/pdb/gdata.c index 7adf4a3eda4..e3d05bd4a57 100644 --- a/librz/bin/pdb/gdata.c +++ b/librz/bin/pdb/gdata.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2014-2020 inisider // SPDX-License-Identifier: LGPL-3.0-only + #include "types.h" #include "gdata.h" #include "stream_file.h" diff --git a/librz/config/serialize_config.c b/librz/config/serialize_config.c index 840a5ffdc50..a53c4901afa 100644 --- a/librz/config/serialize_config.c +++ b/librz/config/serialize_config.c @@ -1,3 +1,4 @@ +// SPDX-FileCopyrightText: 2020 Florian Märkl // SPDX-License-Identifier: LGPL-3.0-only #include diff --git a/librz/core/cagraph.c b/librz/core/cagraph.c index 4c8ecf8503e..490415854e0 100644 --- a/librz/core/cagraph.c +++ b/librz/core/cagraph.c @@ -1,3 +1,5 @@ +// SPDX-FileCopyrightText: 2014-2020 pancake +// SPDX-FileCopyrightText: 2014-2021 ret2libc // SPDX-License-Identifier: LGPL-3.0-only #include @@ -198,4 +200,4 @@ RZ_IPI void rz_core_agraph_print_gml(RzCore *core) { rz_agraph_foreach(core->graph, agraph_print_node_gml, NULL); rz_agraph_foreach_edge(core->graph, agraph_print_edge_gml, NULL); rz_cons_print("]\n"); -} \ No newline at end of file +} diff --git a/librz/core/cautocmpl.c b/librz/core/cautocmpl.c index 2ae7947e97a..f3dc08c9cc6 100644 --- a/librz/core/cautocmpl.c +++ b/librz/core/cautocmpl.c @@ -1,3 +1,4 @@ +// SPDX-FileCopyrightText: 2020 ret2libc // SPDX-License-Identifier: LGPL-3.0-only #include diff --git a/librz/core/cdebug.c b/librz/core/cdebug.c index 95bb8e0b457..525a887f553 100644 --- a/librz/core/cdebug.c +++ b/librz/core/cdebug.c @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2009-2020 pancake +// SPDX-FileCopyrightText: 2021 Anton Kochkov +// SPDX-FileCopyrightText: 2021 ret2libc // SPDX-License-Identifier: LGPL-3.0-only #include diff --git a/librz/core/cmd_interpret.c b/librz/core/cmd_interpret.c index e891b171093..c3030416bb2 100644 --- a/librz/core/cmd_interpret.c +++ b/librz/core/cmd_interpret.c @@ -1,4 +1,6 @@ +// SPDX-FileCopyrightText: 2020 ret2libc // SPDX-License-Identifier: LGPL-3.0-only + #include #include #include "cmd_descs/cmd_descs.h" @@ -69,4 +71,4 @@ RZ_IPI RzCmdStatus rz_interpret_system_handler(RzCore *core, int argc, const cha RZ_IPI RzCmdStatus rz_interpret_macro_handler(RzCore *core, int argc, const char **argv) { rz_cmd_macro_call(&core->rcmd->macro, argv[1]); return RZ_CMD_STATUS_OK; -} \ No newline at end of file +} diff --git a/librz/core/cmd_plugins.c b/librz/core/cmd_plugins.c index cf021085903..be9a4d2bcdc 100644 --- a/librz/core/cmd_plugins.c +++ b/librz/core/cmd_plugins.c @@ -1,3 +1,5 @@ +// SPDX-FileCopyrightText: 2009-2020 pancake +// SPDX-FileCopyrightText: 2020 ret2libc // SPDX-License-Identifier: LGPL-3.0-only #include diff --git a/librz/core/cmd_remote.c b/librz/core/cmd_remote.c index 92e77166c31..930af05291b 100644 --- a/librz/core/cmd_remote.c +++ b/librz/core/cmd_remote.c @@ -1,4 +1,8 @@ +// SPDX-FileCopyrightText: 2009-2020 nibble +// SPDX-FileCopyrightText: 2009-2020 pancake +// SPDX-FileCopyrightText: 2020 ret2libc // SPDX-License-Identifier: LGPL-3.0-only + #include "rz_cmd.h" #include "rz_core.h" @@ -249,4 +253,4 @@ RZ_IPI RzCmdStatus rz_remote_tcp_handler(RzCore *core, int argc, const char **ar return RZ_CMD_STATUS_OK; } return RZ_CMD_STATUS_ERROR; -} \ No newline at end of file +} diff --git a/librz/core/cmd_tasks.c b/librz/core/cmd_tasks.c index 1a129dbc137..8d4d2844e10 100644 --- a/librz/core/cmd_tasks.c +++ b/librz/core/cmd_tasks.c @@ -1,3 +1,4 @@ +// SPDX-FileCopyrightText: 2020 ret2libc // SPDX-License-Identifier: LGPL-3.0-only #include diff --git a/librz/core/seek.c b/librz/core/seek.c index 9b7644c286d..d4e0897a635 100644 --- a/librz/core/seek.c +++ b/librz/core/seek.c @@ -1,3 +1,5 @@ +// SPDX-FileCopyrightText: 2009-2020 pancake +// SPDX-FileCopyrightText: 2021 ret2libc // SPDX-License-Identifier: LGPL-3.0-only #include diff --git a/librz/core/serialize_core.c b/librz/core/serialize_core.c index 062292f5f58..7ad3d881b57 100644 --- a/librz/core/serialize_core.c +++ b/librz/core/serialize_core.c @@ -1,3 +1,4 @@ +// SPDX-FileCopyrightText: 2020 Florian Märkl // SPDX-License-Identifier: LGPL-3.0-only #include diff --git a/librz/flag/serialize_flag.c b/librz/flag/serialize_flag.c index 6ee2d89fe58..7ab8e551001 100644 --- a/librz/flag/serialize_flag.c +++ b/librz/flag/serialize_flag.c @@ -1,3 +1,4 @@ +// SPDX-FileCopyrightText: 2020 Florian Märkl // SPDX-License-Identifier: LGPL-3.0-only #include diff --git a/librz/util/big.c b/librz/util/big.c index f08a0685c4b..48eabefac9d 100644 --- a/librz/util/big.c +++ b/librz/util/big.c @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2020 FXTi +// SPDX-FileCopyrightText: 2020 FXTi // SPDX-License-Identifier: LGPL-3.0-only /* Based on https://github.com/kokke/tiny-bignum-c. diff --git a/shlr/rar/cpu.c b/shlr/rar/cpu.c index 0f1930945ab..9b4692a1738 100644 --- a/shlr/rar/cpu.c +++ b/shlr/rar/cpu.c @@ -1,5 +1,5 @@ -/* RAR-VM assembler/disassembler by pancake for rizin with love */ -/* this implementation is licensed under LGPLv3 - 2012 */ +// SPDX-FileCopyrightText: 2012 pancake +// SPDX-License-Identifier: LGPL-3.0-only #include #include