Changeset 5523 for trunk/tools/wrc/preproc.c
- Timestamp:
- Apr 16, 2001, 7:12:53 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/wrc/preproc.c
r5522 r5523 297 297 { 298 298 /* Search current dir and then -I path */ 299 #ifdef __EMX__ 299 300 fp = fopen(cpy, "rb"); 301 #else 302 fp = fopen(cpy, "rt"); 303 #endif 300 304 if(fp) 301 305 { … … 317 321 strcat(path, "/"); 318 322 strcat(path, cpy); 319 fp = fopen(path, "rb"); 323 #ifdef __EMX__ 324 fp = fopen(cpy, "rb"); 325 #else 326 fp = fopen(cpy, "rt"); 327 #endif 320 328 if(fp && (debuglevel & DEBUGLEVEL_PPMSG)) 321 329 printf("Going to include <%s>\n", path);
Note:
See TracChangeset
for help on using the changeset viewer.