This code ran on dtbsun. Minor changes.
authorAdam Dickmeiss <adam@indexdata.dk>
Wed, 3 May 1995 12:18:46 +0000 (12:18 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Wed, 3 May 1995 12:18:46 +0000 (12:18 +0000)
kernel/Makefile
kernel/monitor.c
util/lgets.c

index 9bbe703..a3bd605 100644 (file)
@@ -2,7 +2,10 @@
 # Europagate, 1995
 #
 # $Log: Makefile,v $
-# Revision 1.23  1995/05/03 07:37:29  adam
+# Revision 1.24  1995/05/03 12:18:46  adam
+# This code ran on dtbsun. Minor changes.
+#
+# Revision 1.23  1995/05/03  07:37:29  adam
 # CCL commands stop/continue implemented. New functions gw_res_{int,bool}
 # are used when possible.
 #
@@ -119,7 +122,7 @@ $(PROG3): $(O3) $(USELIBS3)
        $(CC) -c $(DEFS) $(CFLAGS) $<
 
 clean:
-       rm -f *.log *.[oa] $(PROG1) $(PROG2) 
+       rm -f *.log *.[oa] $(PROG1) $(PROG2) $(PROG3)
        rm -f core mon.out gmon.out errlist *~ fifo.*
 
 depend: depend2
index d1a0422..7dde465 100644 (file)
@@ -2,7 +2,10 @@
  * Europagate, 1995
  *
  * $Log: monitor.c,v $
- * Revision 1.6  1995/05/03 09:16:17  adam
+ * Revision 1.7  1995/05/03 12:18:46  adam
+ * This code ran on dtbsun. Minor changes.
+ *
+ * Revision 1.6  1995/05/03  09:16:17  adam
  * Minor changes.
  *
  * Revision 1.5  1995/05/03  07:37:42  adam
@@ -35,6 +38,7 @@
 #include <fcntl.h>
 #include <setjmp.h>
 #include <signal.h>
+#include <errno.h>
 
 #include <sys/file.h>
 #include <sys/stat.h>
index 9b9285b..1c311ec 100644 (file)
@@ -2,7 +2,10 @@
  * Europagate, 1995
  *
  * $Log: lgets.c,v $
- * Revision 1.2  1995/05/02 15:26:52  adam
+ * Revision 1.3  1995/05/03 12:18:55  adam
+ * This code ran on dtbsun. Minor changes.
+ *
+ * Revision 1.2  1995/05/02  15:26:52  adam
  * EINTR obvserved on reads and writes.
  *
  * Revision 1.1  1995/05/01  12:43:58  adam
@@ -15,6 +18,7 @@
 #include <assert.h>
 #include <ctype.h>
 #include <unistd.h>
+#include <errno.h>
 
 #include <gw-log.h>