From c18d2adc0646084d02509583e4ee0350db87ae11 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Fri, 6 Apr 2018 17:18:05 +0200 Subject: [PATCH] Added license --- Makefile | 5 +++++ include/gclogger.h | 7 +++++++ include/gmc.h | 7 +++++++ src/gclogger.c | 7 +++++++ src/gmc.c | 7 +++++++ 5 files changed, 33 insertions(+) diff --git a/Makefile b/Makefile index 1139cac..499e997 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,8 @@ +# Copyright 2018 Christoph Haas +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the standard MIT license. See LICENSE for more details. + EXE = gclogger SRC_DIR = src diff --git a/include/gclogger.h b/include/gclogger.h index ebb8cfa..fd5ccc8 100644 --- a/include/gclogger.h +++ b/include/gclogger.h @@ -1,3 +1,10 @@ +/* + * Copyright 2018 Christoph Haas + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the standard MIT license. See LICENSE for more details. + */ + #ifndef _GCLOGGER_H_ #define _GCLOGGER_H_ diff --git a/include/gmc.h b/include/gmc.h index 24dc175..733020b 100644 --- a/include/gmc.h +++ b/include/gmc.h @@ -1,3 +1,10 @@ +/* + * Copyright 2018 Christoph Haas + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the standard MIT license. See LICENSE for more details. + */ + #ifndef _GC_GMC_H_ #define _GC_GMC_H_ diff --git a/src/gclogger.c b/src/gclogger.c index cb4ab59..3a233dd 100644 --- a/src/gclogger.c +++ b/src/gclogger.c @@ -1,3 +1,10 @@ +/* + * Copyright 2018 Christoph Haas + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the standard MIT license. See LICENSE for more details. + */ + #include "gclogger.h" extern char *optarg; diff --git a/src/gmc.c b/src/gmc.c index c3b0a43..aafff39 100644 --- a/src/gmc.c +++ b/src/gmc.c @@ -1,3 +1,10 @@ +/* + * Copyright 2018 Christoph Haas + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the standard MIT license. See LICENSE for more details. + */ + #include "gmc.h" int gmc_open(const char *device, int baud) {