Removed includes with relative paths
This commit is contained in:
parent
2c400f6a44
commit
492be74d94
6 changed files with 14 additions and 14 deletions
|
@ -5,7 +5,7 @@ h=$d/h
|
|||
m=$d/man
|
||||
ASS_PATH=$l/em_ass
|
||||
|
||||
CFLAGS=-O
|
||||
CFLAGS=-O -I$d/h
|
||||
|
||||
all: ass
|
||||
|
||||
|
|
|
@ -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$"
|
||||
|
||||
|
|
|
@ -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$" ;
|
||||
|
|
|
@ -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$" ;
|
||||
|
|
|
@ -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 ? */
|
||||
|
|
|
@ -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$" ;
|
||||
|
|
Loading…
Reference in a new issue