From: Ian Jackson Date: Wed, 13 Nov 2019 17:53:55 +0000 (+0000) Subject: add copyright and licence notices to example .[ch] files X-Git-Tag: subdirmk/0.1~55 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?p=subdirmk.git;a=commitdiff_plain;h=87f4c59768b225925730709507f03c9450eff2d1 add copyright and licence notices to example .[ch] files Checked with mdw on irc that this was his intent. Signed-off-by: Ian Jackson --- 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"