mirror of https://github.com/python/cpython
ANSIfy some more forward declarations.
This commit is contained in:
parent
8ec68fded2
commit
58d0510245
|
@ -433,8 +433,8 @@ Tcl_AppInit(Tcl_Interp *interp)
|
||||||
* `tkMain.c'.
|
* `tkMain.c'.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static void EnableEventHook(); /* Forward */
|
static void EnableEventHook(void); /* Forward */
|
||||||
static void DisableEventHook(); /* Forward */
|
static void DisableEventHook(void); /* Forward */
|
||||||
|
|
||||||
static TkappObject *
|
static TkappObject *
|
||||||
Tkapp_New(char *screenName, char *baseName, char *className, int interactive)
|
Tkapp_New(char *screenName, char *baseName, char *className, int interactive)
|
||||||
|
|
|
@ -786,7 +786,7 @@ static PyMethodDef bsddbmodule_methods[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
DL_EXPORT(void)
|
DL_EXPORT(void)
|
||||||
initbsddb() {
|
initbsddb(void) {
|
||||||
PyObject *m, *d;
|
PyObject *m, *d;
|
||||||
|
|
||||||
Bsddbtype.ob_type = &PyType_Type;
|
Bsddbtype.ob_type = &PyType_Type;
|
||||||
|
|
|
@ -180,7 +180,7 @@ static PyTypeObject PdataType = {
|
||||||
#define Pdata_Check(O) ((O)->ob_type == &PdataType)
|
#define Pdata_Check(O) ((O)->ob_type == &PdataType)
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
Pdata_New() {
|
Pdata_New(void) {
|
||||||
Pdata *self;
|
Pdata *self;
|
||||||
|
|
||||||
UNLESS (self = PyObject_New(Pdata, &PdataType)) return NULL;
|
UNLESS (self = PyObject_New(Pdata, &PdataType)) return NULL;
|
||||||
|
@ -193,7 +193,7 @@ Pdata_New() {
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
stackUnderflow() {
|
stackUnderflow(void) {
|
||||||
PyErr_SetString(UnpicklingError, "unpickling stack underflow");
|
PyErr_SetString(UnpicklingError, "unpickling stack underflow");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
@ -2418,7 +2418,7 @@ load_none(Unpicklerobject *self) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
bad_readline() {
|
bad_readline(void) {
|
||||||
PyErr_SetString(UnpicklingError, "pickle data was truncated");
|
PyErr_SetString(UnpicklingError, "pickle data was truncated");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
@ -4516,7 +4516,7 @@ init_stuff(PyObject *module, PyObject *module_dict) {
|
||||||
#define DL_EXPORT(RTYPE) RTYPE
|
#define DL_EXPORT(RTYPE) RTYPE
|
||||||
#endif
|
#endif
|
||||||
DL_EXPORT(void)
|
DL_EXPORT(void)
|
||||||
initcPickle() {
|
initcPickle(void) {
|
||||||
PyObject *m, *d, *v;
|
PyObject *m, *d, *v;
|
||||||
char *rev="1.71";
|
char *rev="1.71";
|
||||||
PyObject *format_version;
|
PyObject *format_version;
|
||||||
|
|
|
@ -639,7 +639,7 @@ static struct PycStringIO_CAPI CAPI = {
|
||||||
#define DL_EXPORT(RTYPE) RTYPE
|
#define DL_EXPORT(RTYPE) RTYPE
|
||||||
#endif
|
#endif
|
||||||
DL_EXPORT(void)
|
DL_EXPORT(void)
|
||||||
initcStringIO() {
|
initcStringIO(void) {
|
||||||
PyObject *m, *d, *v;
|
PyObject *m, *d, *v;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -272,7 +272,7 @@ static PyMethodDef dbmmodule_methods[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
DL_EXPORT(void)
|
DL_EXPORT(void)
|
||||||
initdbm() {
|
initdbm(void) {
|
||||||
PyObject *m, *d;
|
PyObject *m, *d;
|
||||||
|
|
||||||
m = Py_InitModule("dbm", dbmmodule_methods);
|
m = Py_InitModule("dbm", dbmmodule_methods);
|
||||||
|
|
|
@ -474,7 +474,7 @@ static PyMethodDef dbmmodule_methods[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
DL_EXPORT(void)
|
DL_EXPORT(void)
|
||||||
initgdbm() {
|
initgdbm(void) {
|
||||||
PyObject *m, *d;
|
PyObject *m, *d;
|
||||||
|
|
||||||
Dbmtype.ob_type = &PyType_Type;
|
Dbmtype.ob_type = &PyType_Type;
|
||||||
|
|
|
@ -51,7 +51,7 @@ typedef struct {
|
||||||
|
|
||||||
staticforward PyTypeObject Sadtype;
|
staticforward PyTypeObject Sadtype;
|
||||||
staticforward PyTypeObject Sadstatustype;
|
staticforward PyTypeObject Sadstatustype;
|
||||||
static sadstatusobject *sads_alloc(); /* Forward */
|
static sadstatusobject *sads_alloc(void); /* Forward */
|
||||||
|
|
||||||
static PyObject *SunAudioError;
|
static PyObject *SunAudioError;
|
||||||
|
|
||||||
|
@ -364,7 +364,7 @@ sad_getattr(sadobject *xp, char *name)
|
||||||
/* ----------------------------------------------------------------- */
|
/* ----------------------------------------------------------------- */
|
||||||
|
|
||||||
static sadstatusobject *
|
static sadstatusobject *
|
||||||
sads_alloc() {
|
sads_alloc(void) {
|
||||||
return PyObject_New(sadstatusobject, &Sadstatustype);
|
return PyObject_New(sadstatusobject, &Sadstatustype);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -91,7 +91,7 @@ extern int ftime(struct timeb *);
|
||||||
|
|
||||||
/* Forward declarations */
|
/* Forward declarations */
|
||||||
static int floatsleep(double);
|
static int floatsleep(double);
|
||||||
static double floattime();
|
static double floattime(double);
|
||||||
|
|
||||||
/* For Y2K check */
|
/* For Y2K check */
|
||||||
static PyObject *moddict;
|
static PyObject *moddict;
|
||||||
|
|
Loading…
Reference in New Issue