Ito Kazumitsu wrote:
Casey Marshall wrote.
I meant the curly braces, the #if..#endif is appropriate.
The source code now looks like this. What is the preferred way of
writing this?
if (ioctl (fd, FIONREAD, &avail) == -1)
{
#if defined(ENOTTY) && defined(HAVE_FSTAT)
if (errno ==
Casey Marshall wrote.
> I meant the curly braces, the #if..#endif is appropriate.
The source code now looks like this. What is the preferred way of
writing this?
if (ioctl (fd, FIONREAD, &avail) == -1)
{
#if defined(ENOTTY) && defined(HAVE_FSTAT)
if (errno == ENOTTY)
{
On Jun 26, 2007, at 3:18 PM, Ito Kazumitsu wrote:
I am afraild Casey Marshall's comment could not reach me.
I have just found this comment in the mailing list archive.
Your mail host dislikes it when someone from gnu.org sends mail from
dreamhost.com. So it goes.
Casey Marshall wrote.
|