functions in goc

Edward Ballot (eballot@geoworks.com)
Thu, 24 Oct 1996 10:38:20 -0700 (PDT)

> I have a question about using functions in GOC. Whenever I make a function,
> the compiler ignores my prototype and generates a warning saying I'm calling
> a function without prototyping it. The code works, it just gives an annoying

You're probably doing something like this:
void MyFunc();

This will fix it:
void MyFunc(void);

Sorry, no cool explanation as to why this makes a difference. Just
know that it does.

-Ed-