Commit f628ffe0 authored by Jim Fulton's avatar Jim Fulton

Added $#@! missing static declaration.

parent 4d6fb842
/*
$Id: Acquisition.c,v 1.2 1997/02/17 16:20:11 jim Exp $
$Id: Acquisition.c,v 1.3 1997/02/19 22:30:33 jim Exp $
Acquisition Wrappers -- Implementation of acquisition through wrappers
......@@ -59,6 +59,9 @@
Full description
$Log: Acquisition.c,v $
Revision 1.3 1997/02/19 22:30:33 jim
Added $#@! missing static declaration.
Revision 1.2 1997/02/17 16:20:11 jim
Fixed bug in mix-in class declaration.
Added __version__.
......@@ -520,7 +523,7 @@ acquire_of(PyObject *self, PyObject *args)
return (PyObject*)newWrapper(self,args);
}
struct PyMethodDef Acquirer_methods[] = {
static struct PyMethodDef Acquirer_methods[] = {
{"__of__",(PyCFunction)acquire_of,0,""},
{NULL, NULL} /* sentinel */
......@@ -533,7 +536,7 @@ void
initAcquisition()
{
PyObject *m, *d;
char *rev="$Revision: 1.2 $";
char *rev="$Revision: 1.3 $";
PURE_MIXIN_CLASS(Acquirer,
"Base class for objects that acquire attributes from containers\n"
, Acquirer_methods);
......
/*
$Id: Xaq.c,v 1.1 1997/02/19 20:30:53 jim Exp $
$Id: Xaq.c,v 1.2 1997/02/19 22:30:22 jim Exp $
Acquisition Wrappers -- Implementation of acquisition through wrappers
......@@ -59,6 +59,9 @@
Full description
$Log: Xaq.c,v $
Revision 1.2 1997/02/19 22:30:22 jim
Added $#@! missing static declaration.
Revision 1.1 1997/02/19 20:30:53 jim
*** empty log message ***
......@@ -590,7 +593,7 @@ acquire_of(PyObject *self, PyObject *args)
return (PyObject*)newWrapper(self,args);
}
struct PyMethodDef Acquirer_methods[] = {
static struct PyMethodDef Acquirer_methods[] = {
{"__of__",(PyCFunction)acquire_of,0,""},
{NULL, NULL} /* sentinel */
......@@ -603,7 +606,7 @@ void
initXaq()
{
PyObject *m, *d;
char *rev="$Revision: 1.1 $";
char *rev="$Revision: 1.2 $";
PURE_MIXIN_CLASS(Acquirer,
"Base class for objects that acquire attributes from containers\n"
, Acquirer_methods);
......
/*
$Id: Acquisition.c,v 1.2 1997/02/17 16:20:11 jim Exp $
$Id: Acquisition.c,v 1.3 1997/02/19 22:30:33 jim Exp $
Acquisition Wrappers -- Implementation of acquisition through wrappers
......@@ -59,6 +59,9 @@
Full description
$Log: Acquisition.c,v $
Revision 1.3 1997/02/19 22:30:33 jim
Added $#@! missing static declaration.
Revision 1.2 1997/02/17 16:20:11 jim
Fixed bug in mix-in class declaration.
Added __version__.
......@@ -520,7 +523,7 @@ acquire_of(PyObject *self, PyObject *args)
return (PyObject*)newWrapper(self,args);
}
struct PyMethodDef Acquirer_methods[] = {
static struct PyMethodDef Acquirer_methods[] = {
{"__of__",(PyCFunction)acquire_of,0,""},
{NULL, NULL} /* sentinel */
......@@ -533,7 +536,7 @@ void
initAcquisition()
{
PyObject *m, *d;
char *rev="$Revision: 1.2 $";
char *rev="$Revision: 1.3 $";
PURE_MIXIN_CLASS(Acquirer,
"Base class for objects that acquire attributes from containers\n"
, Acquirer_methods);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment