10 Sep, 2009, Arsenickills wrote in the 1st comment:
Votes: 0
I need some help. I'm working with dystopia 1.2.7 and I am having trouble getting the changes board snippet that I downloaded from this site to compile correctly. I followed the "instructions" included in the download, but to no avail I still get this:

db.c:424: warning: implicit declaration of function âload_changesâ

Someone please send some advice my way. Thanks!

Arsenickills
10 Sep, 2009, David Haley wrote in the 2nd comment:
Votes: 0
That means that you are using the function without having declared it beforehand. The compiler needs to see symbol declarations before using them so that it knows what the symbol is supposed to mean. It suffices to add a declaration of the function (that is, its return type, name and arguments) at the top of db.c, after the #include's for example.
0.0/2