From 41e9fc26aa89edfda219e14179c68c698a9f013d Mon Sep 17 00:00:00 2001 From: Jason Self Date: Sun, 26 Nov 2017 06:45:40 -0800 Subject: [PATCH] Add missing copyright and licensing information to lex.c and Makefile based on the README. --- Makefile | 11 +++++++++++ lex.c | 13 +++++++++++++ 2 files changed, 24 insertions(+) diff --git a/Makefile b/Makefile index fe5da71..c204a4b 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,17 @@ # ####################################################### +# Copyright (C) 1990-1998 Quinn C. Jensen +# +# Permission to use, copy, modify, distribute, and sell this +# software and its documentation for any purpose is hereby granted +# without fee, provided that the above copyright notice appear in all +# copies and that both that copyright notice and this permission +# notice appear in supporting documentation. The author makes no +# representations about the suitability of this software for any +# purpose. It is provided "as is" without express or implied +# warranty. + # environment definitions # uncomment the ones you like diff --git a/lex.c b/lex.c index 5195793..72864ca 100644 --- a/lex.c +++ b/lex.c @@ -7,6 +7,19 @@ * *******************************************************\ +/* + * Copyright (C) 1990-1998 Quinn C. Jensen + * + * Permission to use, copy, modify, distribute, and sell this + * software and its documentation for any purpose is hereby granted + * without fee, provided that the above copyright notice appear in + * all copies and that both that copyright notice and this permission + * notice appear in supporting documentation. The author makes no + * representations about the suitability of this software for any + * purpose. It is provided "as is" without express or implied + * warranty. + */ + /* * lex.c - lexical analyzer envelope. lexyy.c, included below, * is the LEX-generated code. -- 2.31.1