Reformat a C golf submission

Take this C golf submission (for the "tiny but standards-compliant Hello World program" category, naturally), and turn it into formatted C code.

Input

#include
int main(void){puts("Hello world!");return 0;}

Output

#include 

int main(void)
{
    puts("Hello world!");
    return 0;
}