Skip to content

Commit

Permalink
Added missing include statements in implementation for PSP.
Browse files Browse the repository at this point in the history
SDL_internal.h should be included to support dynamic API and fix warnings.
  • Loading branch information
philippwiesemann committed Jan 31, 2015
1 parent 43500a7 commit d036ad8
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/audio/psp/SDL_pspaudio.c
Expand Up @@ -18,6 +18,7 @@
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "../../SDL_internal.h"

#include <stdio.h>
#include <string.h>
Expand Down
1 change: 1 addition & 0 deletions src/joystick/psp/SDL_sysjoystick.c
Expand Up @@ -18,6 +18,7 @@
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "../../SDL_internal.h"

/* This is the PSP implementation of the SDL joystick API */
#include <pspctrl.h>
Expand Down
1 change: 1 addition & 0 deletions src/thread/psp/SDL_syssem.c
Expand Up @@ -18,6 +18,7 @@
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "../../SDL_internal.h"

/* Semaphore functions for the PSP. */

Expand Down
2 changes: 1 addition & 1 deletion src/thread/psp/SDL_systhread.c
Expand Up @@ -18,7 +18,7 @@
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/

#include "../../SDL_internal.h"

/* PSP thread management routines for SDL */

Expand Down
1 change: 1 addition & 0 deletions src/timer/psp/SDL_systimer.c
Expand Up @@ -18,6 +18,7 @@
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "../../SDL_internal.h"

#include "SDL_thread.h"
#include "SDL_timer.h"
Expand Down
1 change: 1 addition & 0 deletions src/video/psp/SDL_pspevents.c
Expand Up @@ -18,6 +18,7 @@
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "../../SDL_internal.h"

/* Being a null driver, there's no event stream. We just define stubs for
most of the API. */
Expand Down
1 change: 1 addition & 0 deletions src/video/psp/SDL_pspgl.c
Expand Up @@ -18,6 +18,7 @@
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "../../SDL_internal.h"

#include <stdlib.h>
#include <string.h>
Expand Down
1 change: 1 addition & 0 deletions src/video/psp/SDL_pspmouse.c
Expand Up @@ -18,6 +18,7 @@
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "../../SDL_internal.h"


#include <stdio.h>
Expand Down

0 comments on commit d036ad8

Please sign in to comment.