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