[Python-checkins] CVS: python/dist/src/Modules _codecsmodule.c,2.3,2.4 _cursesmodule.c,2.31,2.32 _localemodule.c,2.12,2.13 _sre.c,2.26,2.27 _tkinter.c,1.107,1.108 almodule.c,1.29,1.30 arraymodule.c,2.48,2.49 audioop.c,1.39,1.40 binascii.c,2.21,2.22 cdmodule.c,1.22,1.23 clmodule.c,2.22,2.23 cmathmodule.c,2.15,2.16 cryptmodule.c,2.7,2.8 dlmodule.c,2.10,2.11 errnomodule.c,2.12,2.13 fcntlmodule.c,2.22,2.23 flmodule.c,1.42,1.43 fmmodule.c,1.15,1.16 getbuildinfo.c,2.5,2.6 getpath.c,1.27,1.28 glmodule.c,2.7,2.8 grpmodule.c,2.12,2.13 imageop.c,2.23,2.24 imgfile.c,1.26,1.27 linuxaudiodev.c,2.4,2.5 mathmodule.c,2.50,2.51 md5module.c,2.19,2.20 mpzmodule.c,2.30,2.31 newmodule.c,2.24,2.25 nismodule.c,2.18,2.19 operator.c,2.15,2.16 pcremodule.c,2.22,2.23 posixmodule.c,2.156,2.157 pwdmodule.c,1.20,1.21 readline.c,2.22,2.23 regexmodule.c,1.38,1.39 regexpr.c,1.32,1.33 resource.c,2.14,2.15 rgbimgmodule.c,2.21,2.22 rotormodule.c,2.27,2.28 selectmodule.c,2.38,2.39 sgimodule.c,1.14,1.15 shamodule.c,2.7,2! .8 signalmodule.c,2.46,2.47 socketmodule.c,1.117,1.118 soundex.c,2.7,2.8 stropmodule.c,2.69,2.70 structmodule.c,2.35,2.36 sunaudiodev.c,1.21,1.22 svmodule.c,2.15,2.16 syslogmodule.c,2.15,2.16 tclNotify.c,2.2,2.3 termios.c,2.12,2.13 threadmodule.c,2.34,2.35 timemodule.c,2.91,2.92 timingmodule.c,2.6,2.7 unicodedata.c,2.2,2.3 xxmodule.c,2.19,2.20 zlibmodule.c,2.33,2.34

Thomas Wouters python-dev@python.org
2000年7月20日 23:00:20 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv496
Modified Files:
	_codecsmodule.c _cursesmodule.c _localemodule.c _sre.c 
	_tkinter.c almodule.c arraymodule.c audioop.c binascii.c 
	cdmodule.c clmodule.c cmathmodule.c cryptmodule.c dlmodule.c 
	errnomodule.c fcntlmodule.c flmodule.c fmmodule.c 
	getbuildinfo.c getpath.c glmodule.c grpmodule.c imageop.c 
	imgfile.c linuxaudiodev.c mathmodule.c md5module.c mpzmodule.c 
	newmodule.c nismodule.c operator.c pcremodule.c posixmodule.c 
	pwdmodule.c readline.c regexmodule.c regexpr.c resource.c 
	rgbimgmodule.c rotormodule.c selectmodule.c sgimodule.c 
	shamodule.c signalmodule.c socketmodule.c soundex.c 
	stropmodule.c structmodule.c sunaudiodev.c svmodule.c 
	syslogmodule.c tclNotify.c termios.c threadmodule.c 
	timemodule.c timingmodule.c unicodedata.c xxmodule.c 
	zlibmodule.c 
Log Message:
Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',
and a couple of functions that were missed in the previous batches. Not
terribly tested, but very carefully scrutinized, three times.
All these were found by the little findkrc.py that I posted to python-dev,
which means there might be more lurking. Cases such as this:
long
func(a, b)
	long a;
	long b; /* flagword */
{
and other cases where the last ; in the argument list isn't followed by a
newline and an opening curly bracket. Regexps to catch all are welcome, of
course ;)
Index: _codecsmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_codecsmodule.c,v
retrieving revision 2.3
retrieving revision 2.4
diff -C2 -r2.3 -r2.4
*** _codecsmodule.c	2000年07月05日 11:24:13	2.3
--- _codecsmodule.c	2000年07月21日 06:00:06	2.4
***************
*** 625,629 ****
 
 DL_EXPORT(void)
! init_codecs()
 {
 Py_InitModule("_codecs", _codecs_functions);
--- 625,629 ----
 
 DL_EXPORT(void)
! init_codecs(void)
 {
 Py_InitModule("_codecs", _codecs_functions);
Index: _cursesmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_cursesmodule.c,v
retrieving revision 2.31
retrieving revision 2.32
diff -C2 -r2.31 -r2.32
*** _cursesmodule.c	2000年07月09日 14:35:00	2.31
--- _cursesmodule.c	2000年07月21日 06:00:06	2.32
***************
*** 1271,1277 ****
 
 static PyObject *
! PyCursesWindow_GetAttr(self, name)
! 	PyCursesWindowObject *self;
! 	char *name;
 {
 return Py_FindMethod(PyCursesWindow_Methods, (PyObject *)self, name);
--- 1271,1275 ----
 
 static PyObject *
! PyCursesWindow_GetAttr(PyCursesWindowObject *self, char *name)
 {
 return Py_FindMethod(PyCursesWindow_Methods, (PyObject *)self, name);
***************
*** 2162,2166 ****
 
 void
! init_curses()
 {
 	PyObject *m, *d, *v;
--- 2160,2164 ----
 
 void
! init_curses(void)
 {
 	PyObject *m, *d, *v;
Index: _localemodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_localemodule.c,v
retrieving revision 2.12
retrieving revision 2.13
diff -C2 -r2.12 -r2.13
*** _localemodule.c	2000年07月15日 22:31:45	2.12
--- _localemodule.c	2000年07月21日 06:00:07	2.13
***************
*** 401,405 ****
 
 DL_EXPORT(void)
! init_locale()
 {
 PyObject *m, *d, *x;
--- 401,405 ----
 
 DL_EXPORT(void)
! init_locale(void)
 {
 PyObject *m, *d, *x;
Index: _sre.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_sre.c,v
retrieving revision 2.26
retrieving revision 2.27
diff -C2 -r2.26 -r2.27
*** _sre.c	2000年07月12日 13:05:32	2.26
--- _sre.c	2000年07月21日 06:00:07	2.27
***************
*** 2098,2102 ****
 __declspec(dllexport)
 #endif
! init_sre()
 {
 	/* Patch object types */
--- 2098,2102 ----
 __declspec(dllexport)
 #endif
! init_sre(void)
 {
 	/* Patch object types */
Index: _tkinter.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_tkinter.c,v
retrieving revision 1.107
retrieving revision 1.108
diff -C2 -r1.107 -r1.108
*** _tkinter.c	2000年07月13日 23:59:35	1.107
--- _tkinter.c	2000年07月21日 06:00:07	1.108
***************
*** 1913,1919 ****
 
 static PyObject *
! Tkinter_Create(self, args)
! 	PyObject *self;
! 	PyObject *args;
 {
 	char *screenName = NULL;
--- 1913,1917 ----
 
 static PyObject *
! Tkinter_Create(PyObject *self, PyObject *args)
 {
 	char *screenName = NULL;
***************
*** 1968,1972 ****
 
 static int
! EventHook()
 {
 #ifndef MS_WINDOWS
--- 1966,1970 ----
 
 static int
! EventHook(void)
 {
 #ifndef MS_WINDOWS
***************
*** 2027,2031 ****
 
 static void
! EnableEventHook()
 {
 #ifdef WAIT_FOR_STDIN
--- 2025,2029 ----
 
 static void
! EnableEventHook(void)
 {
 #ifdef WAIT_FOR_STDIN
***************
*** 2040,2044 ****
 
 static void
! DisableEventHook()
 {
 #ifdef WAIT_FOR_STDIN
--- 2038,2042 ----
 
 static void
! DisableEventHook(void)
 {
 #ifdef WAIT_FOR_STDIN
***************
*** 2072,2076 ****
 
 DL_EXPORT(void)
! init_tkinter()
 {
 	PyObject *m, *d;
--- 2070,2074 ----
 
 DL_EXPORT(void)
! init_tkinter(void)
 {
 	PyObject *m, *d;
***************
*** 2219,2223 ****
 */
 static
! mac_addlibresources()
 {
 	if ( !loaded_from_shlib ) 
--- 2217,2221 ----
 */
 static
! mac_addlibresources(void)
 {
 	if ( !loaded_from_shlib ) 
Index: almodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/almodule.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** almodule.c	2000年07月12日 13:05:33	1.29
--- almodule.c	2000年07月21日 06:00:07	1.30
***************
*** 2038,2042 ****
 
 void
! inital()
 {
 	PyObject *m, *d, *x;
--- 2038,2042 ----
 
 void
! inital(void)
 {
 	PyObject *m, *d, *x;
Index: arraymodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/arraymodule.c,v
retrieving revision 2.48
retrieving revision 2.49
diff -C2 -r2.48 -r2.49
*** arraymodule.c	2000年07月13日 21:10:57	2.48
--- arraymodule.c	2000年07月21日 06:00:07	2.49
***************
*** 1408,1412 ****
 
 DL_EXPORT(void)
! initarray()
 {
 	PyObject *m, *d;
--- 1408,1412 ----
 
 DL_EXPORT(void)
! initarray(void)
 {
 	PyObject *m, *d;
Index: audioop.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/audioop.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -r1.39 -r1.40
*** audioop.c	2000年07月10日 17:15:07	1.39
--- audioop.c	2000年07月21日 06:00:07	1.40
***************
*** 285,292 ****
 }
 
! static double _sum2(a, b, len)
! 	short *a;
! short *b;
! int len;
 {
 	int i;
--- 285,289 ----
 }
 
! static double _sum2(short *a, short *b, int len)
 {
 	int i;
***************
*** 900,905 ****
 
 static int
! gcd(a, b)
! 	int a, b;
 {
 	while (b > 0) {
--- 897,901 ----
 
 static int
! gcd(int a, int b)
 {
 	while (b > 0) {
***************
*** 1345,1349 ****
 
 DL_EXPORT(void)
! initaudioop()
 {
 	PyObject *m, *d;
--- 1341,1345 ----
 
 DL_EXPORT(void)
! initaudioop(void)
 {
 	PyObject *m, *d;
Index: binascii.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/binascii.c,v
retrieving revision 2.21
retrieving revision 2.22
diff -C2 -r2.21 -r2.22
*** binascii.c	2000年07月10日 09:49:19	2.21
--- binascii.c	2000年07月21日 06:00:07	2.22
***************
*** 900,904 ****
 
 DL_EXPORT(void)
! initbinascii()
 {
 	PyObject *m, *d, *x;
--- 900,904 ----
 
 DL_EXPORT(void)
! initbinascii(void)
 {
 	PyObject *m, *d, *x;
Index: cdmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/cdmodule.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -r1.22 -r1.23
*** cdmodule.c	2000年07月10日 17:04:33	1.22
--- cdmodule.c	2000年07月21日 06:00:07	1.23
***************
*** 767,771 ****
 
 void
! initcd()
 {
 	PyObject *m, *d;
--- 767,771 ----
 
 void
! initcd(void)
 {
 	PyObject *m, *d;
Index: clmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/clmodule.c,v
retrieving revision 2.22
retrieving revision 2.23
diff -C2 -r2.22 -r2.23
*** clmodule.c	2000年06月30日 23:58:05	2.22
--- clmodule.c	2000年07月21日 06:00:07	2.23
***************
*** 979,983 ****
 
 void
! initcl()
 {
 	PyObject *m, *d, *x;
--- 979,983 ----
 
 void
! initcl(void)
 {
 	PyObject *m, *d, *x;
Index: cmathmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/cmathmodule.c,v
retrieving revision 2.15
retrieving revision 2.16
diff -C2 -r2.15 -r2.16
*** cmathmodule.c	2000年07月10日 09:31:34	2.15
--- cmathmodule.c	2000年07月21日 06:00:07	2.16
***************
*** 317,321 ****
 
 static PyObject *
! math_error()
 {
 	if (errno == EDOM)
--- 317,321 ----
 
 static PyObject *
! math_error(void)
 {
 	if (errno == EDOM)
***************
*** 395,399 ****
 
 DL_EXPORT(void)
! initcmath()
 {
 	PyObject *m, *d, *v;
--- 395,399 ----
 
 DL_EXPORT(void)
! initcmath(void)
 {
 	PyObject *m, *d, *v;
Index: cryptmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/cryptmodule.c,v
retrieving revision 2.7
retrieving revision 2.8
diff -C2 -r2.7 -r2.8
*** cryptmodule.c	2000年07月10日 09:51:17	2.7
--- cryptmodule.c	2000年07月21日 06:00:07	2.8
***************
*** 37,41 ****
 
 DL_EXPORT(void)
! initcrypt()
 {
 	Py_InitModule("crypt", crypt_methods);
--- 37,41 ----
 
 DL_EXPORT(void)
! initcrypt(void)
 {
 	Py_InitModule("crypt", crypt_methods);
Index: dlmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/dlmodule.c,v
retrieving revision 2.10
retrieving revision 2.11
diff -C2 -r2.10 -r2.11
*** dlmodule.c	2000年07月10日 11:56:03	2.10
--- dlmodule.c	2000年07月21日 06:00:07	2.11
***************
*** 192,196 ****
 
 void
! initdl()
 {
 	PyObject *m, *d, *x;
--- 192,196 ----
 
 void
! initdl(void)
 {
 	PyObject *m, *d, *x;
Index: errnomodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/errnomodule.c,v
retrieving revision 2.12
retrieving revision 2.13
diff -C2 -r2.12 -r2.13
*** errnomodule.c	2000年07月09日 15:14:52	2.12
--- errnomodule.c	2000年07月21日 06:00:07	2.13
***************
*** 71,75 ****
 
 DL_EXPORT(void)
! initerrno()
 {
 	PyObject *m, *d, *de;
--- 71,75 ----
 
 DL_EXPORT(void)
! initerrno(void)
 {
 	PyObject *m, *d, *de;
Index: fcntlmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/fcntlmodule.c,v
retrieving revision 2.22
retrieving revision 2.23
diff -C2 -r2.22 -r2.23
*** fcntlmodule.c	2000年07月10日 17:10:26	2.22
--- fcntlmodule.c	2000年07月21日 06:00:07	2.23
***************
*** 313,317 ****
 
 DL_EXPORT(void)
! initfcntl()
 {
 	PyObject *m, *d;
--- 313,317 ----
 
 DL_EXPORT(void)
! initfcntl(void)
 {
 	PyObject *m, *d;
Index: flmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/flmodule.c,v
retrieving revision 1.42
retrieving revision 1.43
diff -C2 -r1.42 -r1.43
*** flmodule.c	2000年07月16日 12:04:31	1.42
--- flmodule.c	2000年07月21日 06:00:07	1.43
***************
*** 2134,2138 ****
 
 DL_EXPORT(void)
! initfl()
 {
 	Py_InitModule("fl", forms_methods);
--- 2134,2138 ----
 
 DL_EXPORT(void)
! initfl(void)
 {
 	Py_InitModule("fl", forms_methods);
Index: fmmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/fmmodule.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** fmmodule.c	2000年07月12日 10:43:11	1.15
--- fmmodule.c	2000年07月21日 06:00:07	1.16
***************
*** 279,283 ****
 
 void
! initfm()
 {
 	Py_InitModule("fm", fm_methods);
--- 279,283 ----
 
 void
! initfm(void)
 {
 	Py_InitModule("fm", fm_methods);
Index: getbuildinfo.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/getbuildinfo.c,v
retrieving revision 2.5
retrieving revision 2.6
diff -C2 -r2.5 -r2.6
*** getbuildinfo.c	1999年08月27日 20:39:21	2.5
--- getbuildinfo.c	2000年07月21日 06:00:07	2.6
***************
*** 31,35 ****
 
 const char *
! Py_GetBuildInfo()
 {
 	static char buildinfo[50];
--- 31,35 ----
 
 const char *
! Py_GetBuildInfo(void)
 {
 	static char buildinfo[50];
Index: getpath.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/getpath.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -r1.27 -r1.28
*** getpath.c	2000年07月16日 12:04:31	1.27
--- getpath.c	2000年07月21日 06:00:07	1.28
***************
*** 348,352 ****
 
 static void
! calculate_path()
 {
 extern char *Py_GetProgramName();
--- 348,352 ----
 
 static void
! calculate_path(void)
 {
 extern char *Py_GetProgramName();
***************
*** 573,577 ****
 
 char *
! Py_GetPath()
 {
 if (!module_search_path)
--- 573,577 ----
 
 char *
! Py_GetPath(void)
 {
 if (!module_search_path)
***************
*** 581,585 ****
 
 char *
! Py_GetPrefix()
 {
 if (!module_search_path)
--- 581,585 ----
 
 char *
! Py_GetPrefix(void)
 {
 if (!module_search_path)
***************
*** 589,593 ****
 
 char *
! Py_GetExecPrefix()
 {
 if (!module_search_path)
--- 589,593 ----
 
 char *
! Py_GetExecPrefix(void)
 {
 if (!module_search_path)
***************
*** 597,601 ****
 
 char *
! Py_GetProgramFullPath()
 {
 if (!module_search_path)
--- 597,601 ----
 
 char *
! Py_GetProgramFullPath(void)
 {
 if (!module_search_path)
Index: glmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/glmodule.c,v
retrieving revision 2.7
retrieving revision 2.8
diff -C2 -r2.7 -r2.8
*** glmodule.c	2000年07月10日 17:04:33	2.7
--- glmodule.c	2000年07月21日 06:00:07	2.8
***************
*** 7634,7638 ****
 
 void
! initgl()
 {
 	(void) Py_InitModule("gl", gl_methods);
--- 7634,7638 ----
 
 void
! initgl(void)
 {
 	(void) Py_InitModule("gl", gl_methods);
Index: grpmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/grpmodule.c,v
retrieving revision 2.12
retrieving revision 2.13
diff -C2 -r2.12 -r2.13
*** grpmodule.c	2000年07月08日 16:56:26	2.12
--- grpmodule.c	2000年07月21日 06:00:07	2.13
***************
*** 133,137 ****
 
 DL_EXPORT(void)
! initgrp()
 {
 Py_InitModule3("grp", grp_methods, grp__doc__);
--- 133,137 ----
 
 DL_EXPORT(void)
! initgrp(void)
 {
 Py_InitModule3("grp", grp_methods, grp__doc__);
Index: imageop.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/imageop.c,v
retrieving revision 2.23
retrieving revision 2.24
diff -C2 -r2.23 -r2.24
*** imageop.c	2000年07月10日 09:55:32	2.23
--- imageop.c	2000年07月21日 06:00:07	2.24
***************
*** 707,711 ****
 
 DL_EXPORT(void)
! initimageop()
 {
 	PyObject *m, *d;
--- 707,711 ----
 
 DL_EXPORT(void)
! initimageop(void)
 {
 	PyObject *m, *d;
Index: imgfile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/imgfile.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -r1.26 -r1.27
*** imgfile.c	2000年07月16日 12:04:31	1.26
--- imgfile.c	2000年07月21日 06:00:07	1.27
***************
*** 510,514 ****
 
 void
! initimgfile()
 {
 	PyObject *m, *d;
--- 510,514 ----
 
 void
! initimgfile(void)
 {
 	PyObject *m, *d;
Index: linuxaudiodev.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/linuxaudiodev.c,v
retrieving revision 2.4
retrieving revision 2.5
diff -C2 -r2.4 -r2.5
*** linuxaudiodev.c	2000年07月11日 20:30:05	2.4
--- linuxaudiodev.c	2000年07月21日 06:00:07	2.5
***************
*** 385,389 ****
 
 void
! initlinuxaudiodev()
 {
 PyObject *m, *d, *x;
--- 385,389 ----
 
 void
! initlinuxaudiodev(void)
 {
 PyObject *m, *d, *x;
Index: mathmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/mathmodule.c,v
retrieving revision 2.50
retrieving revision 2.51
diff -C2 -r2.50 -r2.51
*** mathmodule.c	2000年07月03日 22:41:34	2.50
--- mathmodule.c	2000年07月21日 06:00:07	2.51
***************
*** 39,43 ****
 
 static PyObject *
! math_error()
 {
 	if (errno == EDOM)
--- 39,43 ----
 
 static PyObject *
! math_error(void)
 {
 	if (errno == EDOM)
***************
*** 260,264 ****
 
 DL_EXPORT(void)
! initmath()
 {
 	PyObject *m, *d, *v;
--- 260,264 ----
 
 DL_EXPORT(void)
! initmath(void)
 {
 	PyObject *m, *d, *v;
Index: md5module.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/md5module.c,v
retrieving revision 2.19
retrieving revision 2.20
diff -C2 -r2.19 -r2.20
*** md5module.c	2000年07月16日 12:04:31	2.19
--- md5module.c	2000年07月21日 06:00:07	2.20
***************
*** 32,36 ****
 
 static md5object *
! newmd5object()
 {
 	md5object *md5p;
--- 32,36 ----
 
 static md5object *
! newmd5object(void)
 {
 	md5object *md5p;
***************
*** 237,241 ****
 
 DL_EXPORT(void)
! initmd5()
 {
 	PyObject *m, *d;
--- 237,241 ----
 
 DL_EXPORT(void)
! initmd5(void)
 {
 	PyObject *m, *d;
Index: mpzmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/mpzmodule.c,v
retrieving revision 2.30
retrieving revision 2.31
diff -C2 -r2.30 -r2.31
*** mpzmodule.c	2000年07月16日 12:04:31	2.30
--- mpzmodule.c	2000年07月21日 06:00:07	2.31
***************
*** 95,99 ****
 
 static mpzobject *
! newmpzobject()
 {
 	mpzobject *mpzp;
--- 95,99 ----
 
 static mpzobject *
! newmpzobject(void)
 {
 	mpzobject *mpzp;
***************
*** 1633,1638 ****
 #define MP_TEST_SIZE		4
 static const char mp_test_magic[MP_TEST_SIZE] = {'\xAA','\xAA','\xAA','\xAA'};
! static mp_test_error( location )
! 	int *location;
 {
 	/* assumptions: *alloc returns address divisible by 4,
--- 1633,1637 ----
 #define MP_TEST_SIZE		4
 static const char mp_test_magic[MP_TEST_SIZE] = {'\xAA','\xAA','\xAA','\xAA'};
! static mp_test_error(int *location)
 {
 	/* assumptions: *alloc returns address divisible by 4,
***************
*** 1717,1721 ****
 
 DL_EXPORT(void)
! initmpz()
 {
 	PyObject *module;
--- 1716,1720 ----
 
 DL_EXPORT(void)
! initmpz(void)
 {
 	PyObject *module;
Index: newmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/newmodule.c,v
retrieving revision 2.24
retrieving revision 2.25
diff -C2 -r2.24 -r2.25
*** newmodule.c	2000年07月10日 11:56:03	2.24
--- newmodule.c	2000年07月21日 06:00:07	2.25
***************
*** 196,200 ****
 
 DL_EXPORT(void)
! initnew()
 {
 	Py_InitModule4("new", new_methods, new_doc, (PyObject *)NULL,
--- 196,200 ----
 
 DL_EXPORT(void)
! initnew(void)
 {
 	Py_InitModule4("new", new_methods, new_doc, (PyObject *)NULL,
Index: nismodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/nismodule.c,v
retrieving revision 2.18
retrieving revision 2.19
diff -C2 -r2.18 -r2.19
*** nismodule.c	2000年07月10日 13:12:27	2.18
--- nismodule.c	2000年07月21日 06:00:07	2.19
***************
*** 296,300 ****
 static
 nismaplist *
! nis_maplist ()
 {
 	nisresp_maplist *list;
--- 296,300 ----
 static
 nismaplist *
! nis_maplist (void)
 {
 	nisresp_maplist *list;
***************
*** 372,376 ****
 
 void
! initnis ()
 {
 	PyObject *m, *d;
--- 372,376 ----
 
 void
! initnis (void)
 {
 	PyObject *m, *d;
Index: operator.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/operator.c,v
retrieving revision 2.15
retrieving revision 2.16
diff -C2 -r2.15 -r2.16
*** operator.c	2000年07月08日 04:53:48	2.15
--- operator.c	2000年07月21日 06:00:07	2.16
***************
*** 248,252 ****
 
 DL_EXPORT(void)
! initoperator()
 {
 /* Create the module and add the functions */
--- 248,252 ----
 
 DL_EXPORT(void)
! initoperator(void)
 {
 /* Create the module and add the functions */
Index: pcremodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/pcremodule.c,v
retrieving revision 2.22
retrieving revision 2.23
diff -C2 -r2.22 -r2.23
*** pcremodule.c	2000年07月10日 13:12:27	2.22
--- pcremodule.c	2000年07月21日 06:00:07	2.23
***************
*** 630,634 ****
 
 DL_EXPORT(void)
! initpcre()
 {
 	PyObject *m, *d;
--- 630,634 ----
 
 DL_EXPORT(void)
! initpcre(void)
 {
 	PyObject *m, *d;
Index: posixmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/posixmodule.c,v
retrieving revision 2.156
retrieving revision 2.157
diff -C2 -r2.156 -r2.157
*** posixmodule.c	2000年07月19日 14:45:40	2.156
--- posixmodule.c	2000年07月21日 06:00:07	2.157
***************
*** 285,289 ****
 
 static PyObject *
! convertenviron()
 {
 	PyObject *d;
--- 285,289 ----
 
 static PyObject *
! convertenviron(void)
 {
 	PyObject *d;
***************
*** 345,349 ****
 
 static PyObject *
! posix_error()
 {
 	return PyErr_SetFromErrno(PyExc_OSError);
--- 345,349 ----
 
 static PyObject *
! posix_error(void)
 {
 	return PyErr_SetFromErrno(PyExc_OSError);
***************
*** 1917,1923 ****
 
 static PyObject *
! posix_getppid(self, args)
! 	PyObject *self;
! 	PyObject *args;
 {
 	if (!PyArg_ParseTuple(args, ":getppid"))
--- 1917,1921 ----
 
 static PyObject *
! posix_getppid(PyObject *self, PyObject *args)
 {
 	if (!PyArg_ParseTuple(args, ":getppid"))
***************
*** 2857,2861 ****
 #if defined(PYCC_VACPP) && defined(PYOS_OS2)
 static long
! system_uptime()
 {
 ULONG value = 0;
--- 2855,2859 ----
 #if defined(PYCC_VACPP) && defined(PYOS_OS2)
 static long
! system_uptime(void)
 {
 ULONG value = 0;
***************
*** 5197,5202 ****
 
 static int
! all_ins(d)
! PyObject* d;
 {
 #ifdef F_OK
--- 5195,5199 ----
 
 static int
! all_ins(PyObject *d)
 {
 #ifdef F_OK
***************
*** 5296,5300 ****
 
 DL_EXPORT(void)
! INITFUNC()
 {
 	PyObject *m, *d, *v;
--- 5293,5297 ----
 
 DL_EXPORT(void)
! INITFUNC(void)
 {
 	PyObject *m, *d, *v;
Index: pwdmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/pwdmodule.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** pwdmodule.c	2000年07月10日 13:12:27	1.20
--- pwdmodule.c	2000年07月21日 06:00:07	1.21
***************
*** 138,142 ****
 
 DL_EXPORT(void)
! initpwd()
 {
 	Py_InitModule4("pwd", pwd_methods, pwd__doc__,
--- 138,142 ----
 
 DL_EXPORT(void)
! initpwd(void)
 {
 	Py_InitModule4("pwd", pwd_methods, pwd__doc__,
Index: readline.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/readline.c,v
retrieving revision 2.22
retrieving revision 2.23
diff -C2 -r2.22 -r2.23
*** readline.c	2000年07月19日 16:54:53	2.22
--- readline.c	2000年07月21日 06:00:07	2.23
***************
*** 397,401 ****
 
 static void
! setup_readline()
 {
 	rl_readline_name = "python";
--- 397,401 ----
 
 static void
! setup_readline(void)
 {
 	rl_readline_name = "python";
***************
*** 486,490 ****
 
 DL_EXPORT(void)
! initreadline()
 {
 	PyObject *m;
--- 486,490 ----
 
 DL_EXPORT(void)
! initreadline(void)
 {
 	PyObject *m;
Index: regexmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/regexmodule.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -r1.38 -r1.39
*** regexmodule.c	2000年07月12日 00:49:17	1.38
--- regexmodule.c	2000年07月21日 06:00:07	1.39
***************
*** 658,662 ****
 
 DL_EXPORT(void)
! initregex()
 {
 	PyObject *m, *d, *v;
--- 658,662 ----
 
 DL_EXPORT(void)
! initregex(void)
 {
 	PyObject *m, *d, *v;
Index: regexpr.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/regexpr.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -r1.32 -r1.33
*** regexpr.c	2000年07月16日 12:04:31	1.32
--- regexpr.c	2000年07月21日 06:00:07	1.33
***************
*** 447,451 ****
 unsigned char re_syntax_table[256];
 
! void re_compile_initialize()
 {
 	int a;
--- 447,451 ----
 unsigned char re_syntax_table[256];
 
! void re_compile_initialize(void)
 {
 	int a;
Index: resource.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/resource.c,v
retrieving revision 2.14
retrieving revision 2.15
diff -C2 -r2.14 -r2.15
*** resource.c	2000年07月16日 12:04:31	2.14
--- resource.c	2000年07月21日 06:00:07	2.15
***************
*** 184,188 ****
 }
 
! void initresource()
 {
 	PyObject *m, *d;
--- 184,188 ----
 }
 
! void initresource(void)
 {
 	PyObject *m, *d;
Index: rgbimgmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/rgbimgmodule.c,v
retrieving revision 2.21
retrieving revision 2.22
diff -C2 -r2.21 -r2.22
*** rgbimgmodule.c	2000年07月16日 12:04:31	2.21
--- rgbimgmodule.c	2000年07月21日 06:00:07	2.22
***************
*** 756,760 ****
 
 DL_EXPORT(void)
! initrgbimg()
 {
 	PyObject *m, *d;
--- 756,760 ----
 
 DL_EXPORT(void)
! initrgbimg(void)
 {
 	PyObject *m, *d;
Index: rotormodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/rotormodule.c,v
retrieving revision 2.27
retrieving revision 2.28
diff -C2 -r2.27 -r2.28
*** rotormodule.c	2000年07月16日 12:04:31	2.27
--- rotormodule.c	2000年07月21日 06:00:07	2.28
***************
*** 619,623 ****
 
 DL_EXPORT(void)
! initrotor()
 {
 	(void)Py_InitModule("rotor", rotor_methods);
--- 619,623 ----
 
 DL_EXPORT(void)
! initrotor(void)
 {
 	(void)Py_InitModule("rotor", rotor_methods);
Index: selectmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/selectmodule.c,v
retrieving revision 2.38
retrieving revision 2.39
diff -C2 -r2.38 -r2.39
*** selectmodule.c	2000年07月13日 23:59:35	2.38
--- selectmodule.c	2000年07月21日 06:00:07	2.39
***************
*** 338,342 ****
 
 DL_EXPORT(void)
! initselect()
 {
 	PyObject *m, *d;
--- 338,342 ----
 
 DL_EXPORT(void)
! initselect(void)
 {
 	PyObject *m, *d;
Index: sgimodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/sgimodule.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** sgimodule.c	2000年07月10日 12:29:26	1.14
--- sgimodule.c	2000年07月21日 06:00:07	1.15
***************
*** 60,64 ****
 
 void
! initsgi()
 {
 	Py_InitModule("sgi", sgi_methods);
--- 60,64 ----
 
 void
! initsgi(void)
 {
 	Py_InitModule("sgi", sgi_methods);
Index: shamodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/shamodule.c,v
retrieving revision 2.7
retrieving revision 2.8
diff -C2 -r2.7 -r2.8
*** shamodule.c	2000年07月08日 06:41:03	2.7
--- shamodule.c	2000年07月21日 06:00:07	2.8
***************
*** 351,355 ****
 
 static SHAobject *
! newSHAobject()
 {
 return (SHAobject *)PyObject_New(SHAobject, &SHAtype);
--- 351,355 ----
 
 static SHAobject *
! newSHAobject(void)
 {
 return (SHAobject *)PyObject_New(SHAobject, &SHAtype);
***************
*** 539,543 ****
 
 void
! initsha()
 {
 PyObject *d, *m;
--- 539,543 ----
 
 void
! initsha(void)
 {
 PyObject *d, *m;
Index: signalmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/signalmodule.c,v
retrieving revision 2.46
retrieving revision 2.47
diff -C2 -r2.46 -r2.47
*** signalmodule.c	2000年07月10日 12:04:18	2.46
--- signalmodule.c	2000年07月21日 06:00:07	2.47
***************
*** 313,317 ****
 
 DL_EXPORT(void)
! initsignal()
 {
 	PyObject *m, *d, *x;
--- 313,317 ----
 
 DL_EXPORT(void)
! initsignal(void)
 {
 	PyObject *m, *d, *x;
***************
*** 554,558 ****
 
 static void
! finisignal()
 {
 	int i;
--- 554,558 ----
 
 static void
! finisignal(void)
 {
 	int i;
***************
*** 584,588 ****
 /* Declared in pyerrors.h */
 int
! PyErr_CheckSignals()
 {
 	int i;
--- 584,588 ----
 /* Declared in pyerrors.h */
 int
! PyErr_CheckSignals(void)
 {
 	int i;
***************
*** 624,628 ****
 */
 void
! PyErr_SetInterrupt()
 {
 	is_tripped++;
--- 624,628 ----
 */
 void
! PyErr_SetInterrupt(void)
 {
 	is_tripped++;
***************
*** 632,636 ****
 
 void
! PyOS_InitInterrupts()
 {
 	initsignal();
--- 632,636 ----
 
 void
! PyOS_InitInterrupts(void)
 {
 	initsignal();
***************
*** 639,643 ****
 
 void
! PyOS_FiniInterrupts()
 {
 	finisignal();
--- 639,643 ----
 
 void
! PyOS_FiniInterrupts(void)
 {
 	finisignal();
***************
*** 645,649 ****
 
 int
! PyOS_InterruptOccurred()
 {
 	if (Handlers[SIGINT].tripped) {
--- 645,649 ----
 
 int
! PyOS_InterruptOccurred(void)
 {
 	if (Handlers[SIGINT].tripped) {
***************
*** 659,663 ****
 
 void
! PyOS_AfterFork()
 {
 #ifdef WITH_THREAD
--- 659,663 ----
 
 void
! PyOS_AfterFork(void)
 {
 #ifdef WITH_THREAD
Index: socketmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/socketmodule.c,v
retrieving revision 1.117
retrieving revision 1.118
diff -C2 -r1.117 -r1.118
*** socketmodule.c	2000年07月11日 23:00:12	1.117
--- socketmodule.c	2000年07月21日 06:00:07	1.118
***************
*** 229,233 ****
 
 static PyObject *
! PySocket_Err()
 {
 #ifdef MS_WINDOWS
--- 229,233 ----
 
 static PyObject *
! PySocket_Err(void)
 {
 #ifdef MS_WINDOWS
***************
*** 1438,1444 ****
 
 static PyObject *
! gethost_common(h, addr)
! 	struct hostent *h;
! 	struct sockaddr_in *addr;
 {
 	char **pch;
--- 1438,1442 ----
 
 static PyObject *
! gethost_common(struct hostent *h, struct sockaddr_in *addr)
 {
 	char **pch;
***************
*** 2186,2190 ****
 
 static void
! NTcleanup()
 {
 	WSACleanup();
--- 2184,2188 ----
 
 static void
! NTcleanup(void)
 {
 	WSACleanup();
***************
*** 2192,2196 ****
 
 static int
! NTinit()
 {
 	WSADATA WSAData;
--- 2190,2194 ----
 
 static int
! NTinit(void)
 {
 	WSADATA WSAData;
***************
*** 2226,2230 ****
 
 static void
! OS2cleanup()
 {
 /* No cleanup is necessary for OS/2 Sockets */
--- 2224,2228 ----
 
 static void
! OS2cleanup(void)
 {
 /* No cleanup is necessary for OS/2 Sockets */
***************
*** 2232,2236 ****
 
 static int
! OS2init()
 {
 char reason[64];
--- 2230,2234 ----
 
 static int
! OS2init(void)
 {
 char reason[64];
Index: soundex.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/soundex.c,v
retrieving revision 2.7
retrieving revision 2.8
diff -C2 -r2.7 -r2.8
*** soundex.c	2000年02月29日 13:59:24	2.7
--- soundex.c	2000年07月21日 06:00:07	2.8
***************
*** 168,172 ****
 */
 DL_EXPORT(void)
! initsoundex()
 {
 (void) Py_InitModule4("soundex",
--- 168,172 ----
 */
 DL_EXPORT(void)
! initsoundex(void)
 {
 (void) Py_InitModule4("soundex",
Index: stropmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/stropmodule.c,v
retrieving revision 2.69
retrieving revision 2.70
diff -C2 -r2.69 -r2.70
*** stropmodule.c	2000年07月16日 12:04:31	2.69
--- stropmodule.c	2000年07月21日 06:00:07	2.70
***************
*** 1181,1185 ****
 
 DL_EXPORT(void)
! initstrop()
 {
 	PyObject *m, *d, *s;
--- 1181,1185 ----
 
 DL_EXPORT(void)
! initstrop(void)
 {
 	PyObject *m, *d, *s;
Index: structmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/structmodule.c,v
retrieving revision 2.35
retrieving revision 2.36
diff -C2 -r2.35 -r2.36
*** structmodule.c	2000年07月10日 12:29:26	2.35
--- structmodule.c	2000年07月21日 06:00:07	2.36
***************
*** 1223,1227 ****
 
 DL_EXPORT(void)
! initstruct()
 {
 	PyObject *m, *d;
--- 1223,1227 ----
 
 DL_EXPORT(void)
! initstruct(void)
 {
 	PyObject *m, *d;
Index: sunaudiodev.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/sunaudiodev.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** sunaudiodev.c	2000年07月16日 12:04:31	1.21
--- sunaudiodev.c	2000年07月21日 06:00:07	1.22
***************
*** 483,487 ****
 
 void
! initsunaudiodev()
 {
 	PyObject *m, *d;
--- 483,487 ----
 
 void
! initsunaudiodev(void)
 {
 	PyObject *m, *d;
Index: svmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/svmodule.c,v
retrieving revision 2.15
retrieving revision 2.16
diff -C2 -r2.15 -r2.16
*** svmodule.c	2000年07月10日 12:43:58	2.15
--- svmodule.c	2000年07月21日 06:00:07	2.16
***************
*** 42,46 ****
 /* Set a SV-specific error from svideo_errno and return NULL */
 static PyObject *
! sv_error()
 {
 	PyErr_SetString(SvError, svStrerror(svideo_errno));
--- 42,46 ----
 /* Set a SV-specific error from svideo_errno and return NULL */
 static PyObject *
! sv_error(void)
 {
 	PyErr_SetString(SvError, svStrerror(svideo_errno));
***************
*** 962,966 ****
 
 void
! initsv()
 {
 	PyObject *m, *d;
--- 962,966 ----
 
 void
! initsv(void)
 {
 	PyObject *m, *d;
Index: syslogmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/syslogmodule.c,v
retrieving revision 2.15
retrieving revision 2.16
diff -C2 -r2.15 -r2.16
*** syslogmodule.c	2000年07月16日 12:04:31	2.15
--- syslogmodule.c	2000年07月21日 06:00:07	2.16
***************
*** 169,173 ****
 
 DL_EXPORT(void)
! initsyslog()
 {
 	PyObject *m, *d;
--- 169,173 ----
 
 DL_EXPORT(void)
! initsyslog(void)
 {
 	PyObject *m, *d;
Index: tclNotify.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/tclNotify.c,v
retrieving revision 2.2
retrieving revision 2.3
diff -C2 -r2.2 -r2.3
*** tclNotify.c	2000年07月16日 12:04:31	2.2
--- tclNotify.c	2000年07月21日 06:00:07	2.3
***************
*** 101,105 ****
 
 static void
! InitNotifier()
 {
 initialized = 1;
--- 101,105 ----
 
 static void
! InitNotifier(void)
 {
 initialized = 1;
***************
*** 508,512 ****
 
 int
! Tcl_GetServiceMode()
 {
 if (!initialized) {
--- 508,512 ----
 
 int
! Tcl_GetServiceMode(void)
 {
 if (!initialized) {
***************
*** 800,804 ****
 
 int
! Tcl_ServiceAll()
 {
 int result = 0;
--- 800,804 ----
 
 int
! Tcl_ServiceAll(void)
 {
 int result = 0;
***************
*** 895,899 ****
 
 int
! PyTcl_WaitUntilEvent()
 {
 int flags = TCL_ALL_EVENTS;
--- 895,899 ----
 
 int
! PyTcl_WaitUntilEvent(void)
 {
 int flags = TCL_ALL_EVENTS;
Index: termios.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/termios.c,v
retrieving revision 2.12
retrieving revision 2.13
diff -C2 -r2.12 -r2.13
*** termios.c	2000年07月10日 12:15:54	2.12
--- termios.c	2000年07月21日 06:00:07	2.13
***************
*** 289,293 ****
 
 DL_EXPORT(void)
! PyInit_termios()
 {
 	PyObject *m, *d;
--- 289,293 ----
 
 DL_EXPORT(void)
! PyInit_termios(void)
 {
 	PyObject *m, *d;
Index: threadmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/threadmodule.c,v
retrieving revision 2.34
retrieving revision 2.35
diff -C2 -r2.34 -r2.35
*** threadmodule.c	2000年07月10日 10:03:58	2.34
--- threadmodule.c	2000年07月21日 06:00:07	2.35
***************
*** 35,39 ****
 
 static lockobject *
! newlockobject()
 {
 	lockobject *self;
--- 35,39 ----
 
 static lockobject *
! newlockobject(void)
 {
 	lockobject *self;
***************
*** 378,382 ****
 
 DL_EXPORT(void)
! initthread()
 {
 	PyObject *m, *d;
--- 378,382 ----
 
 DL_EXPORT(void)
! initthread(void)
 {
 	PyObject *m, *d;
Index: timemodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/timemodule.c,v
retrieving revision 2.91
retrieving revision 2.92
diff -C2 -r2.91 -r2.92
*** timemodule.c	2000年07月10日 12:15:54	2.91
--- timemodule.c	2000年07月21日 06:00:07	2.92
***************
*** 108,112 ****
 
 static void 
! initmactimezone()
 {
 	MachineLocation	loc;
--- 108,112 ----
 
 static void 
! initmactimezone(void)
 {
 	MachineLocation	loc;
***************
*** 580,584 ****
 
 DL_EXPORT(void)
! inittime()
 {
 	PyObject *m, *d;
--- 580,584 ----
 
 DL_EXPORT(void)
! inittime(void)
 {
 	PyObject *m, *d;
***************
*** 668,672 ****
 
 static double
! floattime()
 {
 	/* There are three ways to get the time:
--- 668,672 ----
 
 static double
! floattime(void)
 {
 	/* There are three ways to get the time:
Index: timingmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/timingmodule.c,v
retrieving revision 2.6
retrieving revision 2.7
diff -C2 -r2.6 -r2.7
*** timingmodule.c	2000年07月10日 12:04:18	2.6
--- timingmodule.c	2000年07月21日 06:00:07	2.7
***************
*** 70,74 ****
 
 
! DL_EXPORT(void) inittiming()
 {
 	(void)Py_InitModule("timing", timing_methods);
--- 70,74 ----
 
 
! DL_EXPORT(void) inittiming(void)
 {
 	(void)Py_InitModule("timing", timing_methods);
Index: unicodedata.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/unicodedata.c,v
retrieving revision 2.2
retrieving revision 2.3
diff -C2 -r2.2 -r2.3
*** unicodedata.c	2000年03月31日 17:26:09	2.2
--- unicodedata.c	2000年07月21日 06:00:07	2.3
***************
*** 274,278 ****
 
 DL_EXPORT(void)
! initunicodedata()
 {
 Py_InitModule("unicodedata", unicodedata_functions);
--- 274,278 ----
 
 DL_EXPORT(void)
! initunicodedata(void)
 {
 Py_InitModule("unicodedata", unicodedata_functions);
Index: xxmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/xxmodule.c,v
retrieving revision 2.19
retrieving revision 2.20
diff -C2 -r2.19 -r2.20
*** xxmodule.c	2000年07月10日 11:56:03	2.19
--- xxmodule.c	2000年07月21日 06:00:07	2.20
***************
*** 203,207 ****
 
 DL_EXPORT(void)
! initxx()
 {
 	PyObject *m, *d;
--- 203,207 ----
 
 DL_EXPORT(void)
! initxx(void)
 {
 	PyObject *m, *d;
Index: zlibmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/zlibmodule.c,v
retrieving revision 2.33
retrieving revision 2.34
diff -C2 -r2.33 -r2.34
*** zlibmodule.c	2000年07月10日 09:57:19	2.33
--- zlibmodule.c	2000年07月21日 06:00:07	2.34
***************
*** 830,834 ****
 
 DL_EXPORT(void)
! PyInit_zlib()
 {
 PyObject *m, *d, *ver;
--- 830,834 ----
 
 DL_EXPORT(void)
! PyInit_zlib(void)
 {
 PyObject *m, *d, *ver;

AltStyle によって変換されたページ (->オリジナル) /