From 30cb8a1a90876d811c18440460f3d3d8c1037e27 Mon Sep 17 00:00:00 2001 From: Frederic Petrot Date: Thu, 2 May 2002 15:40:17 +0000 Subject: [PATCH] Adding yywrap to avoid flex specific dependencies --- alliance/src/exp/src/expl.l | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/alliance/src/exp/src/expl.l b/alliance/src/exp/src/expl.l index 1a4721fd..4c0244b7 100644 --- a/alliance/src/exp/src/expl.l +++ b/alliance/src/exp/src/expl.l @@ -109,3 +109,7 @@ message [Mm][Ee][Ss][Ss][Aa][Gg][Ee] . {ECHO;} %% +int yywrap(void) +{ + return 1; +}