Commit 1db555f5 authored by Jeremy Hylton's avatar Jeremy Hylton

Make function decls prototypes

parent 61995c12
...@@ -84,7 +84,7 @@ ...@@ -84,7 +84,7 @@
****************************************************************************/ ****************************************************************************/
static char Record_module_documentation[] = static char Record_module_documentation[] =
"" ""
"\n$Id: Record.c,v 1.11 2001/03/14 19:21:22 brian Exp $" "\n$Id: Record.c,v 1.12 2001/04/02 16:38:58 jeremy Exp $"
; ;
#ifdef PERSISTENCE #ifdef PERSISTENCE
...@@ -590,10 +590,10 @@ static struct PyMethodDef Module_Level__methods[] = { ...@@ -590,10 +590,10 @@ static struct PyMethodDef Module_Level__methods[] = {
/* Initialization function for the module (*must* be called initRecord) */ /* Initialization function for the module (*must* be called initRecord) */
void void
initRecord() initRecord(void)
{ {
PyObject *m, *d; PyObject *m, *d;
char *rev="$Revision: 1.11 $"; char *rev="$Revision: 1.12 $";
UNLESS(py___record_schema__=PyString_FromString("__record_schema__")) return; UNLESS(py___record_schema__=PyString_FromString("__record_schema__")) return;
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE. DAMAGE.
$Id: ThreadLock.c,v 1.8 2001/03/15 13:16:21 jim Exp $ $Id: ThreadLock.c,v 1.9 2001/04/02 16:38:58 jeremy Exp $
If you have questions regarding this software, If you have questions regarding this software,
contact: contact:
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
*/ */
static char ThreadLock_module_documentation[] = static char ThreadLock_module_documentation[] =
"" ""
"\n$Id: ThreadLock.c,v 1.8 2001/03/15 13:16:21 jim Exp $" "\n$Id: ThreadLock.c,v 1.9 2001/04/02 16:38:58 jeremy Exp $"
; ;
#include "Python.h" #include "Python.h"
...@@ -303,10 +303,10 @@ static struct PyMethodDef Module_methods[] = { ...@@ -303,10 +303,10 @@ static struct PyMethodDef Module_methods[] = {
}; };
void void
initThreadLock() initThreadLock(void)
{ {
PyObject *m, *d; PyObject *m, *d;
char *rev="$Revision: 1.8 $"; char *rev="$Revision: 1.9 $";
m = Py_InitModule4("ThreadLock", Module_methods, m = Py_InitModule4("ThreadLock", Module_methods,
ThreadLock_module_documentation, ThreadLock_module_documentation,
......
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