Kaydet (Commit) f894f6f4 authored tarafından Jack Jansen's avatar Jack Jansen

Added prototypes to shut gcc -Wstrict-prototypes up.

üst 9642ecad
......@@ -35,9 +35,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#endif
static PyObject *
gestalt_gestalt(self, args)
PyObject *self;
PyObject *args;
gestalt_gestalt(PyObject *self, PyObject *args)
{
OSErr iErr;
char *str;
......@@ -63,7 +61,7 @@ static struct PyMethodDef gestalt_methods[] = {
};
void
initgestalt()
initgestalt(void)
{
Py_InitModule("gestalt", gestalt_methods);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment