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