ソースを参照

Added copyright notice

ceriel 37 年 前
コミット
5d32d4987e
2 ファイル変更12 行追加0 行削除
  1. 6 0
      lang/cem/libcc/gen/abs.c
  2. 6 0
      lang/cem/libcc/stdio/clearerr.c

+ 6 - 0
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;
 }

+ 6 - 0
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 <stdio.h>
 
 clearerr(iop)