--- projects/libstatgrab/src/libstatgrab/vector.h 2004/04/05 00:58:05 1.5 +++ projects/libstatgrab/src/libstatgrab/vector.h 2004/04/05 15:40:15 1.6 @@ -25,7 +25,7 @@ typedef struct { } /* Internal function to resize the vector. */ -void *statgrab_vector_resize(void *vector, vector_header *h, int count); +void *sg_vector_resize(void *vector, vector_header *h, int count); /* Declare a vector. Specify the init/destroy functions as NULL if you don't * need them. The block size is how many items to allocate at once. */ @@ -46,7 +46,7 @@ void *statgrab_vector_resize(void *vector, vector_head * out-of-memory, the old contents of the vector will be destroyed and the old * vector will be freed. */ #define VECTOR_RESIZE(name, num_items) \ - (name = statgrab_vector_resize((char *) name, &name##_header, num_items), \ + (name = sg_vector_resize((char *) name, &name##_header, num_items), \ name##_header.error) /* Free a vector, destroying its contents. */