Added copyright notice
authorceriel <none@none>
Tue, 31 Mar 1987 10:50:20 +0000 (10:50 +0000)
committerceriel <none@none>
Tue, 31 Mar 1987 10:50:20 +0000 (10:50 +0000)
lang/cem/libcc/gen/abs.c
lang/cem/libcc/stdio/clearerr.c

index 5039a06..f47ca7d 100644 (file)
@@ -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;
 }
index 9324ed5..dc1c6bb 100644 (file)
@@ -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 <stdio.h>
 
 clearerr(iop)