This is really confusing. LIB_(x)is a macro defined somewhere that evaluates the real name of a function.
Thus, the function name is not actually LIB_(strcmp), but the result of the macro LIB_(x). Most likely, it is LIB_(x)intended to add the library name / identifier to the beginning of the function and is defined as follows:
#define LIB_(x) libname_ ## x
source
share