瀏覽代碼

Removed redundant include statements from test programs.

The needed header files are already included with SDL.h. Still including them in
the test programs is confusing because it somehow suggests they would be needed.
Philipp Wiesemann 10 年之前
父節點
當前提交
f9adb453dd
共有 13 個文件被更改,包括 0 次插入20 次删除
  1. 0 1
      test/loopwave.c
  2. 0 3
      test/testatomic.c
  3. 0 1
      test/testerror.c
  4. 0 1
      test/testfile.c
  5. 0 2
      test/testhaptic.c
  6. 0 1
      test/testhotplug.c
  7. 0 2
      test/testlock.c
  8. 0 1
      test/testmessage.c
  9. 0 3
      test/testplatform.c
  10. 0 2
      test/testrumble.c
  11. 0 1
      test/testsem.c
  12. 0 1
      test/testthread.c
  13. 0 1
      test/torturethread.c

+ 0 - 1
test/loopwave.c

@@ -29,7 +29,6 @@
 #endif
 
 #include "SDL.h"
-#include "SDL_audio.h"
 
 struct
 {

+ 0 - 3
test/testatomic.c

@@ -12,9 +12,6 @@
 #include <stdio.h>
 
 #include "SDL.h"
-#include "SDL_atomic.h"
-#include "SDL_assert.h"
-#include "SDL_cpuinfo.h"
 
 /*
   Absolutely basic tests just to see if we get the expected value

+ 0 - 1
test/testerror.c

@@ -17,7 +17,6 @@
 #include <signal.h>
 
 #include "SDL.h"
-#include "SDL_thread.h"
 
 static int alive = 0;
 

+ 0 - 1
test/testfile.c

@@ -22,7 +22,6 @@
 #endif
 
 #include "SDL.h"
-#include "SDL_endian.h"
 
 
 #include <stdio.h>

+ 0 - 2
test/testhaptic.c

@@ -22,8 +22,6 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 
 #ifndef SDL_HAPTIC_DISABLED
 
-#include "SDL_haptic.h"
-
 static SDL_Haptic *haptic;
 
 

+ 0 - 1
test/testhotplug.c

@@ -17,7 +17,6 @@
 #include <string.h>
 
 #include "SDL.h"
-#include "SDL_haptic.h"
 
 #if !defined SDL_JOYSTICK_DISABLED && !defined SDL_HAPTIC_DISABLED
 

+ 0 - 2
test/testlock.c

@@ -19,8 +19,6 @@
 #include <stdlib.h> /* for atexit() */
 
 #include "SDL.h"
-#include "SDL_mutex.h"
-#include "SDL_thread.h"
 
 static SDL_mutex *mutex = NULL;
 static SDL_threadID mainthread;

+ 0 - 1
test/testmessage.c

@@ -17,7 +17,6 @@
 #include <signal.h>
 
 #include "SDL.h"
-#include "SDL_thread.h"
 
 /* Call this instead of exit(), so we can clean up SDL: atexit() is evil. */
 static void

+ 0 - 3
test/testplatform.c

@@ -13,9 +13,6 @@
 #include <stdio.h>
 
 #include "SDL.h"
-#include "SDL_endian.h"
-#include "SDL_cpuinfo.h"
-#include "SDL_assert.h"
 
 /*
  * Watcom C flags these as Warning 201: "Unreachable code" if you just

+ 0 - 2
test/testrumble.c

@@ -33,8 +33,6 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 
 #ifndef SDL_HAPTIC_DISABLED
 
-#include "SDL_haptic.h"
-
 static SDL_Haptic *haptic;
 
 

+ 0 - 1
test/testsem.c

@@ -17,7 +17,6 @@
 #include <signal.h>
 
 #include "SDL.h"
-#include "SDL_thread.h"
 
 #define NUM_THREADS 10
 

+ 0 - 1
test/testthread.c

@@ -17,7 +17,6 @@
 #include <signal.h>
 
 #include "SDL.h"
-#include "SDL_thread.h"
 
 static SDL_TLSID tls;
 static int alive = 0;

+ 0 - 1
test/torturethread.c

@@ -18,7 +18,6 @@
 #include <string.h>
 
 #include "SDL.h"
-#include "SDL_thread.h"
 
 #define NUMTHREADS 10