Patched to compile on OpenWatcom.

This commit is contained in:
Ryan C. Gordon 2017-07-17 14:35:47 -04:00
parent 7fed370cfd
commit 8553113870
1 changed files with 4 additions and 1 deletions

View File

@ -1503,7 +1503,10 @@ static void MyCPUID(UInt32 function, UInt32 *a, UInt32 *b, UInt32 *c, UInt32 *d)
: "0" (function)) ;
#endif
#elif defined(__WATCOMC__)
*a = *b = *c = *d = 0; /* !!! FIXME: oh well for now. */
#else
int CPUInfo[4];