Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Want <cwant@ualberta.ca>2005-08-29 06:47:55 +0400
committerChris Want <cwant@ualberta.ca>2005-08-29 06:47:55 +0400
commit5dd3bfdb188ecc73ddb036481abccedca29a4678 (patch)
tree74938cc625c818e6a5b11441e1a814a860b5dfe9 /source/blender/python/api2_2x/Ipocurve.c
parent796e4d33e05289db8289c5077b558b0f16f8dd29 (diff)
MEM_freeN() and MEM_mallocN() should not have been redeclared in this
file.
Diffstat (limited to 'source/blender/python/api2_2x/Ipocurve.c')
-rw-r--r--source/blender/python/api2_2x/Ipocurve.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/python/api2_2x/Ipocurve.c b/source/blender/python/api2_2x/Ipocurve.c
index 5d244c89726..c09f1b6008a 100644
--- a/source/blender/python/api2_2x/Ipocurve.c
+++ b/source/blender/python/api2_2x/Ipocurve.c
@@ -279,8 +279,6 @@ static PyObject *IpoCurve_getExtrapolation( C_IpoCurve * self )
static PyObject *IpoCurve_addBezier( C_IpoCurve * self, PyObject * args )
{
- short MEM_freeN( void *vmemh );
- void *MEM_mallocN( unsigned int len, char *str );
float x, y;
int npoints;
IpoCurve *icu;
@@ -331,8 +329,6 @@ static PyObject *IpoCurve_addBezier( C_IpoCurve * self, PyObject * args )
static PyObject *IpoCurve_delBezier( C_IpoCurve * self, PyObject * args )
{
- //short MEM_freeN( void *vmemh );
- //void *MEM_mallocN( unsigned int len, char *str );
int npoints;
int index;
IpoCurve *icu;