mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-29 16:09:13 +00:00
Readability: remove const-qualifation from function declaration
const-qualification of parameters only has an effect in function definitions
This commit is contained in:
parent
60d3965ece
commit
3d100df36f
3 changed files with 5 additions and 5 deletions
|
@ -280,10 +280,10 @@ static void dynapi_warn(const char *msg)
|
|||
parts of SDL, because we don't want anything calling it without an
|
||||
extremely good reason. */
|
||||
#if defined(__WATCOMC__)
|
||||
void SDL_ExitProcess(const int exitcode);
|
||||
void SDL_ExitProcess(int exitcode);
|
||||
#pragma aux SDL_ExitProcess aborts;
|
||||
#endif
|
||||
SDL_NORETURN void SDL_ExitProcess(const int exitcode);
|
||||
SDL_NORETURN void SDL_ExitProcess(int exitcode);
|
||||
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue