From 9ec77a8d7499794ee3057e8efeefd4ad65e67a09 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 11 Jul 2019 21:23:37 +0900 Subject: [PATCH] add SPDX-License-Identifier SPDX-License-Identifier is useful to clarify the license (both for humans and machines), especially when the code of the project is embedded into other projects. ref: https://spdx.org/using-spdx-license-identifier Signed-off-by: Akihiro Suda --- parson.c | 2 ++ parson.h | 2 ++ tests.c | 2 ++ 3 files changed, 6 insertions(+) diff --git a/parson.c b/parson.c index ca1652b..cca49d1 100644 --- a/parson.c +++ b/parson.c @@ -1,4 +1,6 @@ /* + SPDX-License-Identifier: MIT + Parson ( http://kgabis.github.com/parson/ ) Copyright (c) 2012 - 2017 Krzysztof Gabis diff --git a/parson.h b/parson.h index 25cb00e..9374f7a 100644 --- a/parson.h +++ b/parson.h @@ -1,4 +1,6 @@ /* + SPDX-License-Identifier: MIT + Parson ( http://kgabis.github.com/parson/ ) Copyright (c) 2012 - 2017 Krzysztof Gabis diff --git a/tests.c b/tests.c index ec9bfa2..6c79d07 100644 --- a/tests.c +++ b/tests.c @@ -1,4 +1,6 @@ /* + SPDX-License-Identifier: MIT + Parson ( http://kgabis.github.com/parson/ ) Copyright (c) 2012 - 2017 Krzysztof Gabis