|
liby is yacc.
yacc produces a file y.tab.c with a function yyparse. Your app must have some lex/yacc code in it somewhere. There is no global yyparse function out there in a standard library that is exported to just any code that wants it - libUil is part of motif, and it does have a yyparse function used locally - what LOCL means. Does your code use motif?
Compilers all have yyparse functions as well, but each yyparse call is just for that one app. yyparse modules are often distibuted in a .a file rather than a shared library.
This doesn't look like something you built from scratch - there look to be vendor libraries.
IS there SDK programmer information? Or vendor support?
Just because you found a library with a yyparse symbol does not mean that much. It probably is not the one the code actually referenced.
|