* What steps will reproduce the problem?
wget-ing tinyap-1.4.0 on Arch64 (Amd64 - x86_64) with gcc 4.3.3 and trying
to compile it (./configure ; make all)
* What is the expected output?
Everything compiled...
* What do you see instead?
unparser.c:41: error: static declaration of 'strndup' follows non-static
declaration
* Please provide any additional information below.
[SOLVED]
I needed to change line unparser.c:41
from
"static char* strndup(const char* src, size_t n) {"
to
"char* strndup(const char* src, size_t n) {"