home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / updates / update18.zoo / gcc / diff4 < prev    next >
Encoding:
Text File  |  1992-03-22  |  807 b   |  35 lines

  1. *** cccp.c~    Sun Mar  8 11:55:45 1992
  2. --- cccp.c    Sun Mar 22 09:51:07 1992
  3. ***************
  4. *** 1519,1526 ****
  5. --- 1519,1531 ----
  6.       {
  7.         if(epath)
  8.       epath = strcat(
  9. + #ifdef atarist
  10.        strcat(strcpy(alloca(strlen(epath)+strlen(e1)+2), epath), ","),
  11.                  e1);
  12. + #else
  13. +      strcat(strcpy(alloca(strlen(epath)+strlen(e1)+2), epath), ":"),
  14. +                e1);
  15. + #endif
  16.         else
  17.       epath = strcpy(alloca(strlen(e1)+1), e1);
  18.       }
  19. ***************
  20. *** 1528,1535 ****
  21. --- 1533,1545 ----
  22.       {
  23.         if(epath)
  24.       epath = strcat(
  25. + #ifdef atarist
  26.        strcat(strcpy(alloca(strlen(epath)+strlen(e2)+2), epath), ","),
  27.                  e2);
  28. + #else
  29. +      strcat(strcpy(alloca(strlen(epath)+strlen(e2)+2), epath), ":"),
  30. +                e2);
  31. + #endif
  32.         else
  33.       epath = strcpy(alloca(strlen(e2)+1), e2);
  34.       }
  35.