From: ceriel Date: Tue, 27 Aug 1991 09:45:37 +0000 (+0000) Subject: Removed includes with relative paths X-Git-Tag: release-5-5~1042 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=492be74d94a39415933548f41cdb29a2aad5d058;p=ack.git Removed includes with relative paths --- diff --git a/util/ass/Makefile b/util/ass/Makefile index c600b11e5..8d1762fe4 100644 --- a/util/ass/Makefile +++ b/util/ass/Makefile @@ -5,7 +5,7 @@ h=$d/h m=$d/man ASS_PATH=$l/em_ass -CFLAGS=-O +CFLAGS=-O -I$d/h all: ass diff --git a/util/ass/ass00.h b/util/ass/ass00.h index 953048bb2..140b2d4ce 100644 --- a/util/ass/ass00.h +++ b/util/ass/ass00.h @@ -3,11 +3,11 @@ * See the copyright notice in the ACK home directory, in the file "Copyright". */ #include -#include "../../h/em_spec.h" -#include "../../h/as_spec.h" -#include "../../h/em_flag.h" -#include "../../h/arch.h" -#include "../../h/local.h" +#include +#include +#include +#include +#include #define RCS_ASS "$Header$" diff --git a/util/ass/ass80.c b/util/ass/ass80.c index 5ce5d4caf..76e96152b 100644 --- a/util/ass/ass80.c +++ b/util/ass/ass80.c @@ -6,7 +6,7 @@ #include "ass00.h" #include "assex.h" -#include "../../h/em_path.h" +#include #ifndef NORCSID static char rcs_id[] = "$Header$" ; diff --git a/util/ass/assci.c b/util/ass/assci.c index 33f2fd94a..200f403ba 100644 --- a/util/ass/assci.c +++ b/util/ass/assci.c @@ -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 +#include +#include #ifndef NORCSID static char rcs_id[] = "$Header$" ; diff --git a/util/ass/asscm.c b/util/ass/asscm.c index 057bd7a6e..27586c6c4 100644 --- a/util/ass/asscm.c +++ b/util/ass/asscm.c @@ -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 ? */ diff --git a/util/ass/maktab.c b/util/ass/maktab.c index ace94233b..2aac8a787 100644 --- a/util/ass/maktab.c +++ b/util/ass/maktab.c @@ -6,8 +6,8 @@ #include "ip_spec.h" #include -#include "../../h/em_spec.h" -#include "../../h/em_flag.h" +#include +#include #ifndef NORCSID static char rcs_id[] = "$Header$" ;