Removed includes with relative paths
authorceriel <none@none>
Tue, 27 Aug 1991 09:45:37 +0000 (09:45 +0000)
committerceriel <none@none>
Tue, 27 Aug 1991 09:45:37 +0000 (09:45 +0000)
util/ass/Makefile
util/ass/ass00.h
util/ass/ass80.c
util/ass/assci.c
util/ass/asscm.c
util/ass/maktab.c

index c600b11..8d1762f 100644 (file)
@@ -5,7 +5,7 @@ h=$d/h
 m=$d/man
 ASS_PATH=$l/em_ass
 
-CFLAGS=-O
+CFLAGS=-O -I$d/h
 
 all:            ass
 
index 953048b..140b2d4 100644 (file)
@@ -3,11 +3,11 @@
  * See the copyright notice in the ACK home directory, in the file "Copyright".
  */
 #include <stdio.h>
-#include "../../h/em_spec.h"
-#include "../../h/as_spec.h"
-#include "../../h/em_flag.h"
-#include "../../h/arch.h"
-#include "../../h/local.h"
+#include <em_spec.h>
+#include <as_spec.h>
+#include <em_flag.h>
+#include <arch.h>
+#include <local.h>
 
 #define        RCS_ASS "$Header$"
 
index 5ce5d4c..76e9615 100644 (file)
@@ -6,7 +6,7 @@
 
 #include        "ass00.h"
 #include        "assex.h"
-#include        "../../h/em_path.h"
+#include        <em_path.h>
 
 #ifndef NORCSID
 static char rcs_id[] = "$Header$" ;
index 33f2fd9..200f403 100644 (file)
@@ -6,9 +6,9 @@
 
 #include        "ass00.h"
 #include        "assex.h"
-#include        "../../h/em_mes.h"
-#include        "../../h/em_pseu.h"
-#include        "../../h/em_ptyp.h"
+#include        <em_mes.h>
+#include        <em_pseu.h>
+#include        <em_ptyp.h>
 
 #ifndef NORCSID
 static char rcs_id[] = "$Header$" ;
index 057bd7a..27586c6 100644 (file)
@@ -102,9 +102,9 @@ freearea(ptr,size) register area_t ptr ; unsigned size ; {
        /* Beware they may both point to freehead */
 
 #ifdef MEMUSE
-       if ( ((char *)l_ptr)+l_ptr->f_size> (char *)ptr && l_ptr<=ptr )
+       if ( ((char *)l_ptr)+l_ptr->f_size> (char *)ptr && (char *)l_ptr<=(char *)ptr )
                fatal("Double freed") ;
-       if ( ((char *)ptr)+size > (char *)c_ptr && ptr<=c_ptr )
+       if ( ((char *)ptr)+size > (char *)c_ptr && (char *)ptr<=(char *)c_ptr )
                fatal("Frreed double") ;
 #endif
        /* Is the block before this one adjacent ? */
index ace9423..2aac8a7 100644 (file)
@@ -6,8 +6,8 @@
 
 #include "ip_spec.h"
 #include <stdio.h>
-#include "../../h/em_spec.h"
-#include "../../h/em_flag.h"
+#include <em_spec.h>
+#include <em_flag.h>
 
 #ifndef NORCSID
 static char rcs_id[] = "$Header$" ;