lextest.c
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:0k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*
  2. ** lextest.c
  3. **
  4. ** tests for flex 2.5.3 bug
  5. */
  6. int
  7. main()
  8. {
  9. yylex();
  10. return 0;
  11. }
  12. int
  13. yywrap()
  14. {
  15. return 1;
  16. };