Remove trailing whitespace

Signed-off-by: AntonioND <antonio_nd@outlook.com>
This commit is contained in:
AntonioND
2017-04-02 17:46:07 +01:00
parent f63339472e
commit e50e3e5a23
17 changed files with 219 additions and 220 deletions

View File

@@ -42,7 +42,7 @@ struct sOptionStackEntry {
struct sOptionStackEntry *pOptionStack = NULL;
void
void
opt_SetCurrentOptions(struct sOptions * pOpt)
{
if (nGBGfxID != -1) {
@@ -105,7 +105,7 @@ opt_SetCurrentOptions(struct sOptions * pOpt)
}
}
void
void
opt_Parse(char *s)
{
struct sOptions newopt;
@@ -154,7 +154,7 @@ opt_Parse(char *s)
opt_SetCurrentOptions(&newopt);
}
void
void
opt_Push(void)
{
struct sOptionStackEntry *pOpt;
@@ -167,7 +167,7 @@ opt_Push(void)
fatalerror("No memory for option stack");
}
void
void
opt_Pop(void)
{
if (pOptionStack) {
@@ -234,7 +234,7 @@ verror(const char *fmt, va_list args)
nErrors += 1;
}
void
void
yyerror(const char *fmt, ...)
{
va_list args;
@@ -243,7 +243,7 @@ yyerror(const char *fmt, ...)
va_end(args);
}
void
void
fatalerror(const char *fmt, ...)
{
va_list args;
@@ -268,7 +268,7 @@ warning(const char *fmt, ...)
va_end(args);
}
static void
static void
usage(void)
{
printf(
@@ -277,7 +277,7 @@ usage(void)
exit(1);
}
int
int
main(int argc, char *argv[])
{
int ch;