merge from gcc

This commit is contained in:
DJ Delorie
2004-08-06 15:38:11 +00:00
parent bf0d233ddd
commit deaa6723d2
2 changed files with 8 additions and 3 deletions

View File

@ -261,14 +261,14 @@ extern double physmem_available PARAMS ((void));
#define XNEW(T) ((T *) xmalloc (sizeof (T)))
#define XCNEW(T) ((T *) xcalloc (1, sizeof (T)))
#define XDELETE(P) free ((P))
#define XDELETE(P) free ((void*) (P))
/* Array allocators. */
#define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N)))
#define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T)))
#define XRESIZEVEC(T, P, N) ((T *) xrealloc ((P), sizeof (T) * (N)))
#define XDELETEVEC(P) free ((P))
#define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N)))
#define XDELETEVEC(P) free ((void*) (P))
/* Allocators for variable-sized structures and raw buffers. */