>>>>> "Isaac Waldron" <[EMAIL PROTECTED]> writes:
Isaac>
Isaac> I don't know if anyone wants to change it or not, but we really shouldn't be
Isaac> using C++ style comments ("//") in code that needs to be compiled under a
Isaac> possibly ansi C compiler. All code in the FreeBSD kernel is compiled with
Isaac> the -ansi switch, so this is a problem when creating the kernel module for
Isaac> FreeBSD, as many of the files in the plex86/kernel directory have C++
Isaac> comments. This is likely to be added to a future revision of the ansi C
Isaac> standard, but it is not a part of it right now.
// comments was added to C in the ISO/IEC 9899 which is the current C
standard. Gcc supports // comments (http://gcc.gnu.org/c99status.html).
/Magnus
Isaac>
Isaac> Isaac Waldron
Isaac> waldroni at lr dot net
Isaac>
Isaac>
Isaac>