Diff for /gforth/Attic/main.c between versions 1.33 and 1.34

version 1.33, 1996/01/25 16:45:54 version 1.34, 1996/02/13 11:12:18
Line 194  Cell *loader(FILE *imagefile) Line 194  Cell *loader(FILE *imagefile)
     relocate(image,(char *)image+header[1],header[1],engine(0,0,0,0,0));      relocate(image,(char *)image+header[1],header[1],engine(0,0,0,0,0));
   }    }
   else if(image[5]!=(Cell)image) {    else if(image[5]!=(Cell)image) {
     fprintf(stderr,"%s: Cannot load nonrelocatable image (compiled for address 0x%lx) at address 0x%lx\nThe Gforth installer should look into the INSTALL file\n", progname, image[5], (Cell)image);      fprintf(stderr,"%s: Cannot load nonrelocatable image (compiled for address 0x%lx) at address 0x%lx\nThe Gforth installer should look into the INSTALL file\n", progname, (unsigned long)image[5], (unsigned long)image);
     exit(1);      exit(1);
   }    }
   

Removed from v.1.33  
changed lines
  Added in v.1.34


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>