Ignore:
Timestamp:
Apr 16, 2001, 7:12:53 PM (24 years ago)
Author:
sandervl
Message:

updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/wrc/preproc.c

    r5522 r5523  
    297297        {
    298298                /* Search current dir and then -I path */
     299#ifdef __EMX__
    299300                fp = fopen(cpy, "rb");
     301#else
     302                fp = fopen(cpy, "rt");
     303#endif
    300304                if(fp)
    301305                {
     
    317321                strcat(path, "/");
    318322                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
    320328                if(fp && (debuglevel & DEBUGLEVEL_PPMSG))
    321329                        printf("Going to include <%s>\n", path);
Note: See TracChangeset for help on using the changeset viewer.