* vec.h (vec_free): Rename to vec_free_. Adapt users.

This commit is contained in:
Ulrich Weigand
2007-04-27 13:16:21 +00:00
parent 5d6696482a
commit 1e8877aad4
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2007-04-27 Ulrich Weigand <uweigand@de.ibm.com>
* vec.h (vec_free): Rename to vec_free_. Adapt users.
2007-04-25 Ulrich Weigand <uweigand@de.ibm.com>
* alpha-linux-tdep.c: Include "gdb_string.h", "regset.h",

View File

@ -378,7 +378,7 @@
/* Reallocate an array of elements with prefix. */
extern void *vec_p_reserve (void *, int);
extern void *vec_o_reserve (void *, int, size_t, size_t);
#define vec_free(V) xfree (V)
#define vec_free_(V) xfree (V)
#define VEC_ASSERT_INFO ,__FILE__,__LINE__
#define VEC_ASSERT_DECL ,const char *file_,unsigned line_
@ -458,7 +458,7 @@ static inline void VEC_OP (T,free) \
(VEC(T) **vec_) \
{ \
if (*vec_) \
vec_free (*vec_); \
vec_free_ (*vec_); \
*vec_ = NULL; \
} \
\
@ -696,7 +696,7 @@ static inline void VEC_OP (T,free) \
(VEC(T) **vec_) \
{ \
if (*vec_) \
vec_free (*vec_); \
vec_free_ (*vec_); \
*vec_ = NULL; \
} \
\
@ -954,7 +954,7 @@ static inline void VEC_OP (T,free) \
(VEC(T) **vec_) \
{ \
if (*vec_) \
vec_free (*vec_); \
vec_free_ (*vec_); \
*vec_ = NULL; \
} \
\