The flex scanner template has this in it:

#ifndef YY_ALWAYS_INTERACTIVE
#ifndef YY_NEVER_INTERACTIVE
extern int isatty YY_PROTO(( int ));
#endif
#endif

Which seems to be the wrong thing to do.

Would this be an ok fix?  I'm worried about the YY_PROTO() messing
things up anyone know what the point of doing it this way is?

Index: flex.skl
===================================================================
RCS file: /home/ncvs/src/usr.bin/lex/flex.skl,v
retrieving revision 1.4
diff -u -u -r1.4 flex.skl
--- flex.skl    1999/10/27 07:56:44     1.4
+++ flex.skl    2001/03/05 22:49:01
@@ -1180,7 +1180,8 @@
 %-
 #ifndef YY_ALWAYS_INTERACTIVE
 #ifndef YY_NEVER_INTERACTIVE
-extern int isatty YY_PROTO(( int ));
+/* for isatty() */
+#include <unistd.h>    
 #endif
 #endif
 

-- 
-Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]]

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message

Reply via email to