1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 10:51:48 +02:00

(XMALLOC, XCALLOC, XREALLOC): Remove unnecessary casts.

This commit is contained in:
Jim Meyering
2003-04-11 11:59:11 +00:00
parent 0bf873ccfb
commit aa32168619

View File

@@ -53,10 +53,10 @@ void *xcalloc (size_t n, size_t s);
void *xrealloc (void *p, size_t n);
char *xstrdup (const char *str);
# define XMALLOC(Type, N_items) ((Type *) xmalloc (sizeof (Type) * (N_items)))
# define XCALLOC(Type, N_items) ((Type *) xcalloc (sizeof (Type), (N_items)))
# define XREALLOC(Ptr, Type, N_items) \
((Type *) xrealloc ((void *) (Ptr), sizeof (Type) * (N_items)))
# define XMALLOC(Type, N_items) (xmalloc (sizeof (Type) * (N_items)))
# define XCALLOC(Type, N_items) (xcalloc (sizeof (Type), (N_items)))
# define XREALLOC(Ptr, Type, N_items) (xrealloc ((Ptr), \
sizeof (Type) * (N_items)))
/* Declare and alloc memory for VAR of type TYPE. */
# define NEW(Type, Var) Type *(Var) = XMALLOC (Type, 1)