From 71fdaafe308438c7cd3e8d8253c5a5f9af321d1b Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 13 Jul 2010 22:26:50 -0700 Subject: [PATCH] Fixed compile warnings --- src/timer/SDL_systimer.h | 1 + src/timer/unix/SDL_systimer.c | 1 + 2 files changed, 2 insertions(+) diff --git a/src/timer/SDL_systimer.h b/src/timer/SDL_systimer.h index 5c74e3f92..d0cfd25db 100644 --- a/src/timer/SDL_systimer.h +++ b/src/timer/SDL_systimer.h @@ -38,4 +38,5 @@ extern int SDL_SYS_StartTimer(void); /* Stop a previously started timer */ extern void SDL_SYS_StopTimer(void); + /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/timer/unix/SDL_systimer.c b/src/timer/unix/SDL_systimer.c index 29c3b7b64..2a933eea2 100644 --- a/src/timer/unix/SDL_systimer.c +++ b/src/timer/unix/SDL_systimer.c @@ -31,6 +31,7 @@ #include #include "SDL_timer.h" +#include "../SDL_systimer.h" #include "../SDL_timer_c.h" /* The clock_gettime provides monotonous time, so we should use it if