tisp

tiny lisp
git clone git://edryd.org/tisp
Log | Files | Refs | LICENSE

commit cb33e7a449896ee5a5e2b4da4885b7a4daddc852
parent 94d9e23c3a1bdfa52511c5f66280ad39ce06acaf
Author: Ed van Bruggen <edvb@uw.edu>
Date:   Fri, 11 Jan 2019 13:11:55 -0800

Update copyright year

Diffstat:
LICENSE | 2+-
main.c | 2+-
tib/math.c | 21++++++++++++++++++++-
tib/math.h | 21++++++++++++++++++++-
tisp.c | 2+-
tisp.h | 2+-
6 files changed, 44 insertions(+), 6 deletions(-)

diff --git a/LICENSE b/LICENSE @@ -1,6 +1,6 @@ zlib License -Copyright (c) 2017-2018 Ed van Bruggen +Copyright (c) 2017-2019 Ed van Bruggen This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/main.c b/main.c @@ -49,7 +49,7 @@ main(int argc, char *argv[]) case 'h': usage(0); case 'v': - die(0, "%s v%s (c) 2017-2018 Ed van Bruggen", argv0, VERSION); + die(0, "%s v%s (c) 2017-2019 Ed van Bruggen", argv0, VERSION); default: usage(1); } ARGEND; diff --git a/tib/math.c b/tib/math.c @@ -1,4 +1,23 @@ -/* See LICENSE file for copyright and license details. */ +/* zlib License + * + * Copyright (c) 2017-2019 Ed van Bruggen + * + * This software is provided 'as-is', without any express or implied + * warranty. In no event will the authors be held liable for any damages + * arising from the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software + * in a product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + */ #include <stdio.h> #include "../tisp.h" diff --git a/tib/math.h b/tib/math.h @@ -1,3 +1,22 @@ -/* See LICENSE file for copyright and license details. */ +/* zlib License + * + * Copyright (c) 2017-2019 Ed van Bruggen + * + * This software is provided 'as-is', without any express or implied + * warranty. In no event will the authors be held liable for any damages + * arising from the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software + * in a product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + */ void tib_env_math(Env env); diff --git a/tisp.c b/tisp.c @@ -1,6 +1,6 @@ /* zlib License * - * Copyright (c) 2017-2018 Ed van Bruggen + * Copyright (c) 2017-2019 Ed van Bruggen * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages diff --git a/tisp.h b/tisp.h @@ -1,6 +1,6 @@ /* zlib License * - * Copyright (c) 2017-2018 Ed van Bruggen + * Copyright (c) 2017-2019 Ed van Bruggen * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages