diff options
author | Sam Lantinga <slouken@libsdl.org> | 2016-11-13 22:57:41 -0800 |
---|---|---|
committer | Sam Lantinga <slouken@libsdl.org> | 2016-11-13 22:57:41 -0800 |
commit | 5e1151257d93764a306b6eaa5e6cfacfa2bf57a7 (patch) | |
tree | c4ad030a3c6d8af8dea229c6845b45a763256e76 /src/timer | |
parent | 34578b09f4eb34ae2f4c426e339b934c557ae9e2 (diff) |
Patch from Sylvain to fix clang warnings
Diffstat (limited to 'src/timer')
-rw-r--r-- | src/timer/unix/SDL_systimer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/timer/unix/SDL_systimer.c b/src/timer/unix/SDL_systimer.c index 217fe327fa..b3e8933e95 100644 --- a/src/timer/unix/SDL_systimer.c +++ b/src/timer/unix/SDL_systimer.c @@ -29,6 +29,7 @@ #include "SDL_timer.h" #include "SDL_assert.h" +#include "../SDL_timer_c.h" /* The clock_gettime provides monotonous time, so we should use it if it's available. The clock_gettime function is behind ifdef |