home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 mARCH / PCWK3A99.iso / Linux / DDD331 / DDD-3_1_.000 / DDD-3_1_ / ddd-3.1.1 / ddd / lextoC.flex < prev    next >
Text File  |  1998-03-25  |  2KB  |  39 lines

  1. # $Id: lextoC.flex,v 1.5 1998/03/25 12:46:08 zeller Exp $
  2. # Adapt LEX output for C++ usage
  3. # (Happens to be working on my Sun using SunOS 4.1.1)
  4.  
  5. # Copyright (C) 1995 Technische Universitaet Braunschweig, Germany.
  6. # Written by Andreas Zeller <zeller@ips.cs.tu-bs.de>.
  7. # This file is part of the ICE Library.
  8. # The ICE Library is free software; you can redistribute it and/or
  9. # modify it under the terms of the GNU Library General Public
  10. # License as published by the Free Software Foundation; either
  11. # version 2 of the License, or (at your option) any later version.
  12. # The ICE Library is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  15. # See the GNU Library General Public License for more details.
  16. # You should have received a copy of the GNU Library General Public
  17. # License along with the ICE Library -- see the file COPYING.LIB.
  18. # If not, write to the Free Software Foundation, Inc.,
  19. # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  20. # ICE is the incremental configuration environment.
  21. # For details, see the ICE World-Wide-Web page, 
  22. # `http://www.cs.tu-bs.de/softech/ice/',
  23. # or send a mail to the ICE developers <ice@ips.cs.tu-bs.de>.
  24.  
  25. 1i\
  26. // This file was modified for -*- C++ -*-\
  27. // using $RCSfile: lextoC.flex,v $ $Revision: 1.5 $\
  28.  
  29. s!^extern char \*yytext;!// &!
  30. s!^extern YY_CHAR \*yytext;!// &!
  31. s!^extern int yyleng;!// &!
  32. s!^extern FILE \*yyin, \*yyout;!// &!
  33.  
  34.