From: Guido van Rossum Date: Mon, 9 Dec 1996 18:51:51 +0000 (+0000) Subject: Added `void' to declaration of initgl(), to keep gcc -Wall happy. X-Git-Tag: v1.5a1~851 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7ce52be62748582247754c2cbb88bb81e39b6b98;p=thirdparty%2FPython%2Fcpython.git Added `void' to declaration of initgl(), to keep gcc -Wall happy. --- diff --git a/Modules/cgen.py b/Modules/cgen.py index ce2870214b37..d31db8730069 100644 --- a/Modules/cgen.py +++ b/Modules/cgen.py @@ -533,6 +533,7 @@ for func in functions: print '\t{NULL, NULL} /* Sentinel */' print '};' print +print 'void' print 'initgl()' print '{' print '\tinitmodule("gl", gl_methods);'