# HG changeset patch # User Ryan C. Gordon # Date 1128327152 0 # Node ID d93862a3d8217f025182df7a09fd241942e95e53 # Parent 5bc98ce985c20eab2f9c2add05d49ddec57e4dfb Fixed compiler warnings in Watcom C. diff -r 5bc98ce985c2 -r d93862a3d821 test/testcdrom.c --- a/test/testcdrom.c Sun Oct 02 00:50:03 2005 +0000 +++ b/test/testcdrom.c Mon Oct 03 08:12:32 2005 +0000 @@ -2,8 +2,9 @@ /* Test the SDL CD-ROM audio functions */ #include -#include #include +#include +#include #include "SDL.h" diff -r 5bc98ce985c2 -r d93862a3d821 test/testkeys.c --- a/test/testkeys.c Sun Oct 02 00:50:03 2005 +0000 +++ b/test/testkeys.c Mon Oct 03 08:12:32 2005 +0000 @@ -3,6 +3,8 @@ #include #include +#include +#include #include "SDL.h" diff -r 5bc98ce985c2 -r d93862a3d821 test/testtypes.c --- a/test/testtypes.c Sun Oct 02 00:50:03 2005 +0000 +++ b/test/testtypes.c Mon Oct 03 08:12:32 2005 +0000 @@ -1,8 +1,20 @@ #include +#include +#include #include "SDL_main.h" #include "SDL_types.h" +/* + * Watcom C flags these as Warning 201: "Unreachable code" if you just + * compare them directly, so we push it through a function to keep the + * compiler quiet. --ryan. + */ +static int badsize(size_t sizeoftype, size_t hardcodetype) +{ + return sizeoftype != hardcodetype; +} + int main(int argc, char *argv[]) { int error = 0; @@ -11,26 +23,26 @@ if ( argv[1] && (strcmp(argv[1], "-q") == 0) ) verbose = 0; - if ( sizeof(Uint8) != 1 ) { + if ( badsize(sizeof(Uint8), 1) ) { if ( verbose ) printf("sizeof(Uint8) != 1, instead = %d\n", sizeof(Uint8)); ++error; } - if ( sizeof(Uint16) != 2 ) { + if ( badsize(sizeof(Uint16), 2) ) { if ( verbose ) printf("sizeof(Uint16) != 2, instead = %d\n", sizeof(Uint16)); ++error; } - if ( sizeof(Uint32) != 4 ) { + if ( badsize(sizeof(Uint32), 4) ) { if ( verbose ) printf("sizeof(Uint32) != 4, instead = %d\n", sizeof(Uint32)); ++error; } #ifdef SDL_HAS_64BIT_TYPE - if ( sizeof(Uint64) != 8 ) { + if ( badsize(sizeof(Uint64), 8) ) { if ( verbose ) printf("sizeof(Uint64) != 8, instead = %d\n", sizeof(Uint64)); diff -r 5bc98ce985c2 -r d93862a3d821 test/testver.c --- a/test/testver.c Sun Oct 02 00:50:03 2005 +0000 +++ b/test/testver.c Mon Oct 03 08:12:32 2005 +0000 @@ -4,6 +4,7 @@ */ #include +#include #include "SDL.h" diff -r 5bc98ce985c2 -r d93862a3d821 test/torturethread.c --- a/test/torturethread.c Sun Oct 02 00:50:03 2005 +0000 +++ b/test/torturethread.c Mon Oct 03 08:12:32 2005 +0000 @@ -22,7 +22,7 @@ int SubThreadFunc(void *data) { while(! *(int volatile *)data) { - ; /*SDL_Delay(10); /* do nothing */ + ; /*SDL_Delay(10);*/ /* do nothing */ } return 0; }