Mercurial > sdl-ios-xcode
comparison src/main/dummy/SDL_dummy_main.c @ 4472:791b3256fb22
Mostly cleaned up warnings with -Wmissing-prototypes
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 26 Jun 2010 08:56:48 -0700 |
parents | 44b6f09a07d8 |
children |
comparison
equal
deleted
inserted
replaced
4471:11cedc036ca1 | 4472:791b3256fb22 |
---|---|
10 return (SDL_main(argc, argv)); | 10 return (SDL_main(argc, argv)); |
11 } | 11 } |
12 #else | 12 #else |
13 /* Nothing to do on this platform */ | 13 /* Nothing to do on this platform */ |
14 int | 14 int |
15 SDL_main_stub_symbol() | 15 SDL_main_stub_symbol(void); |
16 | |
17 int | |
18 SDL_main_stub_symbol(void) | |
16 { | 19 { |
17 return 0; | 20 return 0; |
18 } | 21 } |
19 #endif | 22 #endif |
20 | 23 |