trunk/src/emu/emucore.h
| r245374 | r245375 | |
| 23 | 23 | #include <stdarg.h> |
| 24 | 24 | |
| 25 | 25 | // some cleanups for Solaris for things defined in stdlib.h |
| 26 | | #ifdef defined(__sun__) && defined(__svr4__) |
| 26 | #if defined(__sun__) && defined(__svr4__) |
| 27 | 27 | #undef si_status |
| 28 | 28 | #undef WWORD |
| 29 | 29 | #endif |
| r245374 | r245375 | |
| 373 | 373 | //************************************************************************** |
| 374 | 374 | |
| 375 | 375 | // population count |
| 376 | | #ifndef defined(__NetBSD__) |
| 376 | #if defined(__NetBSD__) |
| 377 | 377 | inline int popcount(UINT32 val) |
| 378 | 378 | { |
| 379 | 379 | int count; |