[Python-checkins] r45916 - python/trunk/Modules/_ctypes/_ctypes_test.c

thomas.heller python-checkins at python.org
Fri May 5 21:14:24 CEST 2006


Author: thomas.heller
Date: Fri May  5 21:14:24 2006
New Revision: 45916

Modified:
   python/trunk/Modules/_ctypes/_ctypes_test.c
Log:
Clean up.


Modified: python/trunk/Modules/_ctypes/_ctypes_test.c
==============================================================================
--- python/trunk/Modules/_ctypes/_ctypes_test.c	(original)
+++ python/trunk/Modules/_ctypes/_ctypes_test.c	Fri May  5 21:14:24 2006
@@ -96,7 +96,7 @@
 	return dst;
 }
 
-EXPORT(void) free(void *ptr)
+EXPORT(void)my_free(void *ptr)
 {
 	free(ptr);
 }
@@ -204,11 +204,6 @@
 	return 0;
 }
 
-EXPORT(void) my_free(void *p)
-{
-	printf("my_free got %p\n", p);
-}
-
 typedef struct {
 	char *name;
 	char *value;


More information about the Python-checkins mailing list