aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-03-06 21:42:07 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-03-06 21:42:07 +0000
commit9c50b4cb200832ae29ebb3024dde16674b001347 (patch)
treee60fca8882a2a5ac0da2ac2a1703a7b15a43a028 /c_parser
parent4e058918ed29724f9bbda6ebce32323478a71e2a (diff)
downloadCompiler-9c50b4cb200832ae29ebb3024dde16674b001347.tar.gz
Compiler-9c50b4cb200832ae29ebb3024dde16674b001347.zip
Removing declaration of fileno
Diffstat (limited to 'c_parser')
-rw-r--r--c_parser/src/c_lexer.flex2
1 files changed, 0 insertions, 2 deletions
diff --git a/c_parser/src/c_lexer.flex b/c_parser/src/c_lexer.flex
index c8ca90a..91b35a9 100644
--- a/c_parser/src/c_lexer.flex
+++ b/c_parser/src/c_lexer.flex
@@ -1,8 +1,6 @@
%option noyywrap
%{
-// Avoid error "error: fileno was not declared in this scope"
-extern "C" int fileno(FILE *stream);
#include "c_parser.tab.hpp"