1d01804309
My previous indent(1) commit accidentally broke the -pcs option (which adds space between function name and opening parenthesis in function calls) by copying all but one of a few conditions in an if clause. Reinstate the condition. Add a regression test to lower the chances of breaking it again. Correct a comment with description of what the option does.
8 lines
84 B
Plaintext
8 lines
84 B
Plaintext
/* $FreeBSD$ */
|
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
puts("Hello");
|
|
return 0;
|
|
}
|