Reformat code
This commit is contained in:
@@ -1,15 +1,16 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
void out(void) {
|
||||
printf("atexit() succeeded!\n");
|
||||
void out(void)
|
||||
{
|
||||
printf("atexit() succeeded!\n");
|
||||
}
|
||||
|
||||
|
||||
int main(void) {
|
||||
if (atexit(out)) {
|
||||
fprintf(stderr, "atexit() failed\n");
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
int main(void)
|
||||
{
|
||||
if (atexit(out)) {
|
||||
fprintf(stderr, "atexit() failed\n");
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user