Reputation: 6453
I used stricmp() in my code described here
It gives a compile error undefined reference to
stricmp'`.
How to compile with libc library with -c option?
Upvotes: 2
Views: 222
Reputation: 799450
stricmp()
is a QNX 4 function. The POSIX equivalent is strcasecmp()
.
Upvotes: 3