I get 2 warnings:
- Implicit declaration of function ‘funcName’
- Previous implicit declaration of ‘funcName’ was here
Not sure why.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just what the warning says. An “implicit” declaration of a function is usually one that isn’t defined yet. Could you also include the line of code that is giving you that warning?
My first thought is that you are not
#importing some code you need so the compiler knows where to find that function.