home *** CD-ROM | disk | FTP | other *** search
- *** cccp.c~ Sun Mar 8 11:55:45 1992
- --- cccp.c Sun Mar 22 09:51:07 1992
- ***************
- *** 1519,1526 ****
- --- 1519,1531 ----
- {
- if(epath)
- epath = strcat(
- + #ifdef atarist
- strcat(strcpy(alloca(strlen(epath)+strlen(e1)+2), epath), ","),
- e1);
- + #else
- + strcat(strcpy(alloca(strlen(epath)+strlen(e1)+2), epath), ":"),
- + e1);
- + #endif
- else
- epath = strcpy(alloca(strlen(e1)+1), e1);
- }
- ***************
- *** 1528,1535 ****
- --- 1533,1545 ----
- {
- if(epath)
- epath = strcat(
- + #ifdef atarist
- strcat(strcpy(alloca(strlen(epath)+strlen(e2)+2), epath), ","),
- e2);
- + #else
- + strcat(strcpy(alloca(strlen(epath)+strlen(e2)+2), epath), ":"),
- + e2);
- + #endif
- else
- epath = strcpy(alloca(strlen(e2)+1), e2);
- }
-