]> granicus.if.org Git - python/commitdiff
ANSIfications: fix empty arglists, and remove the checks for
authorThomas Wouters <thomas@python.org>
Sat, 22 Jul 2000 23:30:03 +0000 (23:30 +0000)
committerThomas Wouters <thomas@python.org>
Sat, 22 Jul 2000 23:30:03 +0000 (23:30 +0000)
'HAVE_STDARG_PROTOTYPES' (consider it true, remove false branch)

Include/ceval.h
Include/import.h
Include/modsupport.h
Include/pgenheaders.h
Include/sysmodule.h
Include/unicodeobject.h

index 5258d57c903d766543cf6891e61d09b1f7f25acb..9468451c4fd136f929355bd6b52bdbd1e02afb43 100644 (file)
@@ -27,15 +27,9 @@ DL_IMPORT(PyObject *) PyEval_CallObject(PyObject *, PyObject *);
 #define PyEval_CallObject(func,arg) \
         PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL)
 
-#ifdef HAVE_STDARG_PROTOTYPES
 DL_IMPORT(PyObject *) PyEval_CallFunction(PyObject *obj, char *format, ...);
 DL_IMPORT(PyObject *) PyEval_CallMethod(PyObject *obj,
                                         char *methodname, char *format, ...);
-#else
-/* Better to have no prototypes at all for varargs functions in this case */
-DL_IMPORT(PyObject *) PyEval_CallFunction();
-DL_IMPORT(PyObject *) PyEval_CallMethod();
-#endif
 
 DL_IMPORT(PyObject *) PyEval_GetBuiltins(void);
 DL_IMPORT(PyObject *) PyEval_GetGlobals(void);
index 73f242f82990defc1152245608b559a903351244..c11d33e1c1192bf0771584c24ae3b0a18884bd47 100644 (file)
@@ -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 {
index c55b46b758a6dbebade36876d1ee88dd4eaa8a74..75449f215afeb19d173b16fe7afdd3f6114daf05 100644 (file)
@@ -16,8 +16,6 @@ extern "C" {
 
 /* Module support interface */
 
-#ifdef HAVE_STDARG_PROTOTYPES
-
 #include <stdarg.h>
 
 extern DL_IMPORT(int) PyArg_Parse(PyObject *, char *, ...);
@@ -26,17 +24,6 @@ extern DL_IMPORT(int) PyArg_ParseTupleAndKeywords(PyObject *, PyObject *,
                                                   char *, char **, ...);
 extern DL_IMPORT(PyObject *) Py_BuildValue(char *, ...);
 
-#else
-
-#include <varargs.h>
-
-/* Better to have no prototypes at all for varargs functions in this case */
-extern DL_IMPORT(int) PyArg_Parse();
-extern DL_IMPORT(int) PyArg_ParseTuple();
-extern DL_IMPORT(PyObject *) Py_BuildValue();
-
-#endif
-
 extern DL_IMPORT(int) PyArg_VaParse(PyObject *, char *, va_list);
 extern DL_IMPORT(PyObject *) Py_VaBuildValue(char *, va_list);
 
index 3834ff242d59b79618cb72fe3ef28ab1d607e601..9d7e8ac0c01695432bc51e358784eb228fefdf55 100644 (file)
@@ -35,14 +35,8 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 
 #include "pydebug.h"
 
-#ifdef HAVE_STDARG_PROTOTYPES
 DL_IMPORT(void) PySys_WriteStdout(const char *format, ...);
 DL_IMPORT(void) PySys_WriteStderr(const char *format, ...);
-#else
-/* Better to have no prototypes at all for varargs functions in this case */
-DL_IMPORT(void) PySys_WriteStdout();
-DL_IMPORT(void) PySys_WriteStderr();
-#endif
 
 #define addarc _Py_addarc
 #define addbit _Py_addbit
index e208fc392a49bc6ebfa629b3b7b465331e5f020d..a2920c031c5aaacf30d231baec01dd2e5ec1a4cb 100644 (file)
@@ -22,14 +22,8 @@ DL_IMPORT(FILE *) PySys_GetFile(char *, FILE *);
 DL_IMPORT(void) PySys_SetArgv(int, char **);
 DL_IMPORT(void) PySys_SetPath(char *);
 
-#ifdef HAVE_STDARG_PROTOTYPES
 DL_IMPORT(void) PySys_WriteStdout(const char *format, ...);
 DL_IMPORT(void) PySys_WriteStderr(const char *format, ...);
-#else
-/* Better to have no prototypes at all for varargs functions in this case */
-DL_IMPORT(void) PySys_WriteStdout();
-DL_IMPORT(void) PySys_WriteStderr();
-#endif
 
 extern DL_IMPORT(PyObject *) _PySys_TraceFunc, *_PySys_ProfileFunc;
 extern DL_IMPORT(int) _PySys_CheckInterval;
index 41fffc0cd0d6490f6a5032f16e4f4a3cee5ea2ad..95e9f02741853d9f15e7e09089cf3fcd24d6ea94 100644 (file)
@@ -376,7 +376,7 @@ extern DL_IMPORT(int) PyUnicode_AsWideChar(
    
  */
 
-extern DL_IMPORT(const char*) PyUnicode_GetDefaultEncoding();
+extern DL_IMPORT(const char*) PyUnicode_GetDefaultEncoding(void);
 
 /* Sets the currently active default encoding.