fix txfree() prototype
This commit is contained in:
parent
8038ce1575
commit
bfc6636b61
|
|
@ -1,3 +1,7 @@
|
||||||
|
2010-08-15 Robert Larice
|
||||||
|
* src/maths/sparse/spdefs.h :
|
||||||
|
fix txfree() prototype
|
||||||
|
|
||||||
2010-08-13 Holger Vogt
|
2010-08-13 Holger Vogt
|
||||||
* autogen.sh: keep configure.in untouched by generating temporary
|
* autogen.sh: keep configure.in untouched by generating temporary
|
||||||
configure.ac if --adms is selected
|
configure.ac if --adms is selected
|
||||||
|
|
|
||||||
|
|
@ -369,7 +369,7 @@ typedef struct
|
||||||
/* Allocation */
|
/* Allocation */
|
||||||
|
|
||||||
extern void * tmalloc(size_t);
|
extern void * tmalloc(size_t);
|
||||||
extern void * txfree(void *);
|
extern void txfree(void *);
|
||||||
extern void * trealloc(void *, size_t);
|
extern void * trealloc(void *, size_t);
|
||||||
|
|
||||||
#define ALLOC(type,number) ((type *)tmalloc((size_t)(sizeof(type)*(number))))
|
#define ALLOC(type,number) ((type *)tmalloc((size_t)(sizeof(type)*(number))))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue