Well, having a little bit of time to play around with the issues I'm having
with Flex under GCC, I've determined that the problem occurs in the
following code fragment:

  for
  (
   n = 0;
    n < num_to_read
   &&  (
     c =
      getc    <<<Error occurs on this line
      (
       yyin
      )
    )
     !=
      (EOF) &&
    1
   && c != 'n';
   ++n
  )


The error reported is "syntax error before numeric constant".
This kind of gives me the impression that "getc" is defined a bit
differently under FreeBSD than other environments?  Any ideas?
Cheers,
Randy Hyde

_______________________________________________
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to