Fix whitespace issues.

master
Christoph Lohmann 2018-07-08 14:59:13 +02:00
parent 62d8733dfb
commit 78504360bf
1 changed files with 2 additions and 4 deletions

View File

@ -15,7 +15,7 @@
char **p; /* the slides */
int n; /* the number of slides */
void
void
cleanup(int s)
{
int i;
@ -26,7 +26,6 @@ cleanup(int s)
exit(1);
}
void
setsignal()
{
@ -39,7 +38,6 @@ setsignal()
signal(SIGTERM, cleanup);
}
int
main(int argc, char *argv[])
{
@ -132,7 +130,7 @@ again:
}
/* unmap mem */
cleanup(0);
cleanup(0);
return (0);
}