From c5fe99a79f5954936cb0b765c4bd92a74354f392 Mon Sep 17 00:00:00 2001 From: r4 Date: Sun, 29 May 2022 21:57:31 +0200 Subject: [PATCH] add copyright notices --- Makefile | 3 +++ include/ds/number.h | 3 +++ tests/generic/vec.h | 3 +++ 3 files changed, 9 insertions(+) diff --git a/Makefile b/Makefile index 7de3353..313f5a9 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,6 @@ +# Copyright 2022 Darwin Schuppan +# SPDX license identifier: MIT + ################################ # Config # ################################ diff --git a/include/ds/number.h b/include/ds/number.h index 39ad5d7..9bcdf71 100644 --- a/include/ds/number.h +++ b/include/ds/number.h @@ -1,3 +1,6 @@ +// Copyright 2022 Darwin Schuppan +// SPDX license identifier: MIT + #ifndef __DS_NUMBER_H__ #define __DS_NUMBER_H__ diff --git a/tests/generic/vec.h b/tests/generic/vec.h index b878dfe..a6fc21d 100644 --- a/tests/generic/vec.h +++ b/tests/generic/vec.h @@ -1,3 +1,6 @@ +// Copyright 2022 Darwin Schuppan +// SPDX license identifier: MIT + #ifndef __TESTS_VEC_H__ #define __TESTS_VEC_H__