Ignore:
Timestamp:
May 2, 2000, 4:33:04 PM (25 years ago)
Author:
bird
Message:

Defined SEMICOLON to force use of ; as include separator.

File:
1 edited

Legend:

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

    r3459 r3476  
    148148}
    149149
    150 #if defined(_Windows) || defined(__MSDOS__) || defined(__WIN32OS2__)
     150/*kso added test for __SEMICOLON__ since __WIN32OS2__ isn't defined! */
     151#if defined(__SEMICOLON__) || defined(_Windows) || defined(__MSDOS__) || defined(__WIN32OS2__)
    151152#define INCLUDESEPARATOR        ";"
     153#warning "Using ; as include separator"
    152154#else
     155#warning "Using : as include separator"
    153156#define INCLUDESEPARATOR        ":"
    154157#endif
Note: See TracChangeset for help on using the changeset viewer.