aboutsummaryrefslogtreecommitdiff
path: root/src/tpc.lex
diff options
context:
space:
mode:
authorpacien2018-05-07 01:33:55 +0200
committerpacien2018-05-07 01:33:55 +0200
commit15390a3b612562a8f1c995e968cd3b1943375ab9 (patch)
tree23fdd2a5b680bf18f3505199b11a2e5ed2786271 /src/tpc.lex
parent49662d2162ef19a137faf17736fb7641d0b61452 (diff)
downloadtpc-compiler-15390a3b612562a8f1c995e968cd3b1943375ab9.tar.gz
Code cleanup and reformating
Diffstat (limited to 'src/tpc.lex')
-rw-r--r--src/tpc.lex7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/tpc.lex b/src/tpc.lex
index 7a0d6b6..bdf6bb5 100644
--- a/src/tpc.lex
+++ b/src/tpc.lex
@@ -1,8 +1,8 @@
1%{ 1%{
2/** 2/**
3 * UPEM / Compilation / Projet 3 * UPEM / Compilation / Projet
4 * Pacien TRAN-GIRARD, Adam NAILI 4 * Pacien TRAN-GIRARD, Adam NAILI
5 */ 5 */
6 6
7#include "tpc.tab.h" 7#include "tpc.tab.h"
8#define INT 0 8#define INT 0
@@ -49,4 +49,3 @@ reade { return READE; }
49<COMMENT>\n { lineno++; } 49<COMMENT>\n { lineno++; }
50<COMMENT>. ; 50<COMMENT>. ;
51%% 51%%
52