[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [bug-gnulib] Re: getaddrinfo module conflict
From: |
Bruno Haible |
Subject: |
Re: [bug-gnulib] Re: getaddrinfo module conflict |
Date: |
Wed, 19 Jul 2006 18:15:33 +0200 |
User-agent: |
KMail/1.9.1 |
Derek R. Price wrote:
> +/* #define AI_PASSIVE 0x0001 /* Socket address is intended for `bind'. */
Some compilers warn about /* inside a comment. For this reason, I'd
recommend to use #if 0 for commenting out.
If you really need something that looks like a comment inside a comment,
you can use
/* outer ... /* inner comment */ ... comment */
Bruno