projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9642eca
)
Added prototypes to shut gcc -Wstrict-prototypes up.
author
Jack Jansen
<jack.jansen@cwi.nl>
Tue, 4 Sep 2001 22:29:31 +0000
(22:29 +0000)
committer
Jack Jansen
<jack.jansen@cwi.nl>
Tue, 4 Sep 2001 22:29:31 +0000
(22:29 +0000)
Mac/Modules/gestaltmodule.c
patch
|
blob
|
history
diff --git
a/Mac/Modules/gestaltmodule.c
b/Mac/Modules/gestaltmodule.c
index 15a2c89e98fdafe08ea95db8b28c8dd6459be2ce..11946a5ff7f3d93bae6b8f4353535be7a9cd4ede 100644
(file)
--- a/
Mac/Modules/gestaltmodule.c
+++ b/
Mac/Modules/gestaltmodule.c
@@
-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);
}