From 87f4c59768b225925730709507f03c9450eff2d1 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 13 Nov 2019 17:53:55 +0000 Subject: [PATCH] add copyright and licence notices to example .[ch] files Checked with mdw on irc that this was his intent. Signed-off-by: Ian Jackson --- lib/t/toytest.c | 6 ++++++ lib/toylib.c | 6 ++++++ lib/toylib.h | 6 ++++++ src/toy.c | 6 ++++++ 4 files changed, 24 insertions(+) diff --git a/lib/t/toytest.c b/lib/t/toytest.c index 0971427..aa03e1e 100644 --- a/lib/t/toytest.c +++ b/lib/t/toytest.c @@ -1,3 +1,9 @@ +/* + * subdirmk - example code + * Copyright 2019 Mark Wooding + * SPDX-License-Identifier: LGPL-2.0-or-later + */ + #include #include #include diff --git a/lib/toylib.c b/lib/toylib.c index 084266d..6e73f76 100644 --- a/lib/toylib.c +++ b/lib/toylib.c @@ -1,3 +1,9 @@ +/* + * subdirmk - example code + * Copyright 2019 Mark Wooding + * SPDX-License-Identifier: LGPL-2.0-or-later + */ + #include "toylib.h" const char *greeting(void) diff --git a/lib/toylib.h b/lib/toylib.h index 122e3fc..04848d5 100644 --- a/lib/toylib.h +++ b/lib/toylib.h @@ -1,3 +1,9 @@ +/* + * subdirmk - example code + * Copyright 2019 Mark Wooding + * SPDX-License-Identifier: LGPL-2.0-or-later + */ + #ifndef LIBTOY_H #define LIBTOY_H diff --git a/src/toy.c b/src/toy.c index 41ec14f..a70f861 100644 --- a/src/toy.c +++ b/src/toy.c @@ -1,3 +1,9 @@ +/* + * subdirmk - example code + * Copyright 2019 Mark Wooding + * SPDX-License-Identifier: LGPL-2.0-or-later + */ + #include #include "toylib.h" -- 2.30.2