[parisc-linux] Keyboard driver patch proposal
Alan Cox
alan@lxorguk.ukuu.org.uk
Mon, 30 Apr 2001 18:02:31 +0100 (BST)
> Grant Grundler said:
> > BTW, I'm told the '//' comment style is not ok; "/* ... */" is expected.
> > It's not mentioned in Documentation/CodingStyle so I can't explain it.
>
> Not all C compilers like C++ comments. =( It should be in the
> CodingStyle document.
All compilers suitable for 2.4 building support //. It not the preferred kernel
style but now days its accepted. Its also valid ISO C now (which has a nasty
side effect as it can change the result of a program 8))
x = 2//**/
-4;
Alan