I'm using TinyFAT (tff.h / tff.c) and I'm also using the snprintf() function. When I include stdio.h into my program I get all sorts of errors that TinyFAT is already declaring functions like fputc(), feof, EOF etc.
If I don't include stdio.h my project builds but I get a warning that snprintf() is implicitly declared. I reckon it finds the object code during the link anyway.
Is there any way to work around the problems when including stdio.h?
Thank you for your response.