651
/* yylex_destroy() is not defined before Flex 2.5.9
652
so we attempt to define something that should be good enough
653
for old Flex - such as that found on CentOS 5
655
#if !defined(YY_FLEX_MAJOR_VERSION) || YY_FLEX_MAJOR_VERSION < 2 \
656
|| (YY_FLEX_MAJOR_VERSION == 2 \
657
&& (!defined(YY_FLEX_MINOR_VERSION) || YY_FLEX_MINOR_VERSION < 5 \
658
|| (YY_FLEX_MINOR_VERSION == 5 \
659
&& (!defined(YY_FLEX_SUBMINOR_VERSION) \
660
|| YY_FLEX_SUBMINOR_VERSION < 9))))
661
# define yylex_destroy() yy_delete_buffer(YY_CURRENT_BUFFER)
664
/**********************************************************************
665
Release any resources used by the lexer. */
668
pars_lexer_close(void)
669
/*==================*/
674
stringbuf_len_alloc = stringbuf_len = 0;