implicit declaration error

when I try and compile my code I get an error message that says…
implicit declaration of function

Does anyone know why I would get this and what I can do to sort it out?!?

Howdy,

you’re using a function with no prior decleration.

make sure you #incl’ all function prototypes.

cheers,
John

Thanks!!!