- Timestamp:
- Sep 18, 2006, 4:55:49 AM (19 years ago)
- Location:
- trunk/src/gmake
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/kbuild.c
r531 r532 26 26 27 27 /* No GNU coding style here! */ 28 29 #ifdef KMK_HELPERS 28 30 29 31 #include "make.h" … … 1288 1290 } 1289 1291 1292 1293 #endif /* KMK_HELPERS */ -
trunk/src/gmake/main.c
r530 r532 414 414 "print-data-base" }, 415 415 #ifdef KMK 416 { CHAR_MAX+5, positive_int, (char *) &process_priority, 1, 1, 0, 0, 0,417 "priority" },416 { CHAR_MAX+5, positive_int, (char *) &process_priority, 1, 1, 0, 417 (char *) &process_priority, (char *) &process_priority, "priority" }, 418 418 #endif 419 419 { 'q', flag, (char *) &question_flag, 1, 1, 1, 0, 0, "question" }, -
trunk/src/gmake/w32/pathstuff.c
r529 r532 90 90 w32_fixcase(char *pszPath) 91 91 { 92 #define my_assert(expr) \ 92 #ifndef NDEBUG 93 # define my_assert(expr) \ 93 94 do { \ 94 95 if (!(expr)) { \ … … 99 100 } \ 100 101 } while (0) 102 #else 103 # define my_assert(expr) do {} while (0) 104 #endif 101 105 102 106 char *psz = pszPath;
Note:
See TracChangeset
for help on using the changeset viewer.