Re: [hackers] [st] Use BSD-style function notation || FRIGN
Greetings.
On Sat, 11 Jul 2015 18:29:38 +0200 Pickfire <pickfire_AT_riseup.net> wrote:
> I think linux-style is better:
>
> int main() {
> printf("Hello!");
> }
Linux kernel style is this:
int main()
{
printf("Hello!\n");
return 0;
}
What st is now using for the function declaration is Plan 9 style.
This is a matter of taste. The majority decided about the now used style.
Sincerely,
Christoph Lohmann
Received on Sat Jul 11 2015 - 18:29:38 CEST
This archive was generated by hypermail 2.3.0
: Sat Jul 11 2015 - 18:36:10 CEST