=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/garray.h,v retrieving revision 1.7 retrieving revision 1.8 diff -c -r1.7 -r1.8 *** src/usr.bin/make/garray.h 2014/04/22 08:26:31 1.7 --- src/usr.bin/make/garray.h 2014/05/12 19:11:19 1.8 *************** *** 1,7 **** #ifndef GARRAY_H #define GARRAY_H ! /* $OpenBSD: garray.h,v 1.7 2014/04/22 08:26:31 espie Exp $ */ /* Growable array implementation */ /* --- 1,7 ---- #ifndef GARRAY_H #define GARRAY_H ! /* $OpenBSD: garray.h,v 1.8 2014/05/12 19:11:19 espie Exp $ */ /* Growable array implementation */ /* *************** *** 52,58 **** do { \ if ((l)->n >= (l)->size) { \ (l)->size *= 2; \ ! (l)->a = emult_realloc((l)->a, \ (l)->size, sizeof(struct GNode *)); \ MAY_INCREASE_STATS; \ } \ --- 52,58 ---- do { \ if ((l)->n >= (l)->size) { \ (l)->size *= 2; \ ! (l)->a = ereallocarray((l)->a, \ (l)->size, sizeof(struct GNode *)); \ MAY_INCREASE_STATS; \ } \