blob: 0c50a44b4c3bb7df873fe6e68b1f9bc622a765e2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- lexed/sr.yy.c.orig Tue Jun 10 20:20:57 2003
+++ lexed/sr.yy.c Tue Jun 10 20:21:33 2003
@@ -1,4 +1,5 @@
-# include "stdio.h"
+# include <stdio.h>
+# include <unistd.h>
# define U(x) ((x)&0377)
# define NLSTATE yyprevious=YYNEWLINE
# define BEGIN yybgin = yysvec + 1 +
@@ -17,7 +18,7 @@
int yymorfg;
extern char *yysptr, yysbuf[];
int yytchar;
-FILE *yyin ={stdin}, *yyout ={stdout};
+FILE *yyin ={STDIN_FILENO}, *yyout ={STDOUT_FILENO};
extern int yylineno;
struct yysvf {
struct yywork *yystoff;
|