fix txfree() prototype

This commit is contained in:
rlar 2010-08-15 17:13:17 +00:00
parent 8038ce1575
commit bfc6636b61
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-08-15 Robert Larice
* src/maths/sparse/spdefs.h :
fix txfree() prototype
2010-08-13 Holger Vogt
* autogen.sh: keep configure.in untouched by generating temporary
configure.ac if --adms is selected

View File

@ -369,7 +369,7 @@ typedef struct
/* Allocation */
extern void * tmalloc(size_t);
extern void * txfree(void *);
extern void txfree(void *);
extern void * trealloc(void *, size_t);
#define ALLOC(type,number) ((type *)tmalloc((size_t)(sizeof(type)*(number))))