From 5f37591a164672ec25c389e646a763d40403cd79 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Sat, 22 Jul 2000 23:30:03 +0000 Subject: ANSIfications: fix empty arglists, and remove the checks for 'HAVE_STDARG_PROTOTYPES' (consider it true, remove false branch) --- Include/import.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Include/import.h') diff --git a/Include/import.h b/Include/import.h index 73f242f829..c11d33e1c1 100644 --- a/Include/import.h +++ b/Include/import.h @@ -35,12 +35,12 @@ extern DL_IMPORT(PyObject *)_PyImport_FixupExtension(char *, char *); struct _inittab { char *name; - void (*initfunc)(); + void (*initfunc)(void); }; extern DL_IMPORT(struct _inittab *) PyImport_Inittab; -extern DL_IMPORT(int) PyImport_AppendInittab(char *name, void (*initfunc)()); +extern DL_IMPORT(int) PyImport_AppendInittab(char *name, void (*initfunc)(void)); extern DL_IMPORT(int) PyImport_ExtendInittab(struct _inittab *newtab); struct _frozen { -- cgit v1.2.1