From 43ea927e3f60d0e06f9f03d360c08c6dc88c8961 Mon Sep 17 00:00:00 2001 From: ceriel Date: Tue, 31 Mar 1987 10:50:20 +0000 Subject: [PATCH] Added copyright notice --- lang/cem/libcc/gen/abs.c | 6 ++++++ lang/cem/libcc/stdio/clearerr.c | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/lang/cem/libcc/gen/abs.c b/lang/cem/libcc/gen/abs.c index 5039a064..f47ca7d1 100644 --- a/lang/cem/libcc/gen/abs.c +++ b/lang/cem/libcc/gen/abs.c @@ -1,4 +1,10 @@ /* $Header$ */ + +/* + * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands. + * See the copyright notice in the ACK home directory, in the file "Copyright". + */ + abs(i){ return i < 0 ? -i : i; } diff --git a/lang/cem/libcc/stdio/clearerr.c b/lang/cem/libcc/stdio/clearerr.c index 9324ed57..dc1c6bb1 100644 --- a/lang/cem/libcc/stdio/clearerr.c +++ b/lang/cem/libcc/stdio/clearerr.c @@ -1,4 +1,10 @@ /* $Header$ */ + +/* + * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands. + * See the copyright notice in the ACK home directory, in the file "Copyright". + */ + #include clearerr(iop)