Changeset 21719 for branches/gcc-kmk/src
- Timestamp:
- Oct 19, 2011, 10:20:51 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/kernel32/_ras.cpp
r21717 r21719 10 10 #include <custombuild.h> 11 11 #include <odincrt.h> 12 #ifdef __GNUC__ 13 #include <float.h> 14 #else 12 15 #include <libc/float.h> 16 #endif 13 17 14 18 #include "initterm.h" … … 421 425 } 422 426 427 #ifndef __GNUC__ 428 423 429 int vsnprintf (char *buf, int n, const char *fmt, va_list args) 424 430 { … … 622 628 } 623 629 630 #endif // ifndef __GNUC__ 631 624 632 int WIN32API rasOpenLogFile (ULONG *ph, const char *logfilename) 625 633 { … … 1076 1084 ULONG rasGenObjIdent (void) 1077 1085 { 1078 static objident = 0;1086 static ULONG objident = 0; 1079 1087 1080 1088 objident++; … … 1506 1514 if (rascfg.fRasBreakPoint) 1507 1515 { 1516 #ifdef __GNUC__ 1517 __asm__ __volatile__ ("int3\n\tnop"); 1518 #else 1508 1519 _interrupt(3); 1520 #endif 1509 1521 } 1510 1522
Note:
See TracChangeset
for help on using the changeset viewer.