Changeset 176
- Timestamp:
- Oct 13, 2004, 6:56:04 PM (21 years ago)
- Location:
- trunk/src/makedep
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/makedep/bldw32.cmd
r171 r176 1 cl / DWIN32 /DNO_X11 /DOBJSUFFIX=\".obj\" /Z7 /Os/FekDepCCxx.exe *.c1 cl /MD /DWIN32 /DNO_X11 /DOBJSUFFIX=\".obj\" /Z7 /Ox /G7 /FekDepCCxx.exe *.c -
trunk/src/makedep/main.c
r173 r176 629 629 char *getnextline(struct filepointer *filep) 630 630 { 631 char *p,/* walking pointer */632 *eof,/* end of file pointer */633 *bol; /* beginning of line pointer */631 register char *p; /* walking pointer */ 632 char *eof; /* end of file pointer */ 633 register char *bol; /* beginning of line pointer */ 634 634 int lineno; /* line number */ 635 boolean whitespace = FALSE;635 //boolean whitespace = FALSE; /* bird: we don't care, C++ certainly doesn't */ 636 636 637 637 /* … … 663 663 bol++; 664 664 } 665 whitespace = TRUE;665 //whitespace = TRUE; 666 666 } 667 667 … … 735 735 } 736 736 bol = p+1; 737 whitespace = FALSE;737 //whitespace = FALSE; 738 738 } 739 739 } … … 741 741 bol = NULL; 742 742 done: 743 if (bol && whitespace) {744 warning("%s: non-portable whitespace encountered at line %d\n",745 filep->f_name, lineno);746 }743 //if (bol && whitespace) { 744 // warning("%s: non-portable whitespace encountered at line %d\n", 745 // filep->f_name, lineno); 746 //} 747 747 filep->f_p = p; 748 748 filep->f_line = lineno;
Note:
See TracChangeset
for help on using the changeset viewer.