Commit 18601e70 authored by Jeffrey Shell's avatar Jeffrey Shell

Removed use of importing malloc

parent 1de56a37
...@@ -85,14 +85,13 @@ ...@@ -85,14 +85,13 @@
static char intSet_module_documentation[] = static char intSet_module_documentation[] =
"" ""
"\n$Id: intSet.c,v 1.12 1999/03/10 00:14:35 klm Exp $" "\n$Id: intSet.c,v 1.13 1999/05/01 20:35:22 jeffrey Exp $"
; ;
#include <limits.h> #include <limits.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <errno.h> #include <errno.h>
#include <malloc.h>
#include <time.h> #include <time.h>
#include "cPersistence.h" #include "cPersistence.h"
...@@ -612,7 +611,7 @@ void ...@@ -612,7 +611,7 @@ void
initintSet() initintSet()
{ {
PyObject *m, *d; PyObject *m, *d;
char *rev="$Revision: 1.12 $"; char *rev="$Revision: 1.13 $";
UNLESS(ExtensionClassImported) return; UNLESS(ExtensionClassImported) return;
...@@ -648,6 +647,9 @@ initintSet() ...@@ -648,6 +647,9 @@ initintSet()
Revision Log: Revision Log:
$Log: intSet.c,v $ $Log: intSet.c,v $
Revision 1.13 1999/05/01 20:35:22 jeffrey
Removed use of importing malloc
Revision 1.12 1999/03/10 00:14:35 klm Revision 1.12 1999/03/10 00:14:35 klm
Committing with version 1.0 of the license. Committing with version 1.0 of the license.
......
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