mirror of
https://github.com/RTimothyEdwards/magic.git
synced 2026-08-28 17:15:13 +02:00
Changed mallocMagic() argument to size_t. However, this is probably
not useful so long as Tcl_Alloc() has (unsigned int) for an argument. The more important investigation is probably to determine if there is a way to keep csa2_list from growing to absurdly large sizes on connectivity checks.
This commit is contained in:
+2
-2
@@ -22,8 +22,8 @@
|
||||
#ifndef _MALLOC_H
|
||||
#define _MALLOC_H
|
||||
|
||||
extern void *mallocMagic(unsigned int);
|
||||
extern void *callocMagic(unsigned int);
|
||||
extern void *mallocMagic(size_t);
|
||||
extern void *callocMagic(size_t);
|
||||
extern void freeMagic(void *);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user