X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Ftest.priv.h;h=20ffbe89b80ad9d7693ec5dc13015ce68c105a57;hp=08434c8a6783038faa162033315242f0d76c8707;hb=396a05943b7da5039dd15d79c4385c7d2a75d6d4;hpb=60014650d5e3f088e2d5e8835925cce96db00c33;ds=sidebyside diff --git a/test/test.priv.h b/test/test.priv.h index 08434c8a..20ffbe89 100644 --- a/test/test.priv.h +++ b/test/test.priv.h @@ -29,7 +29,7 @@ /**************************************************************************** * Author: Thomas E. Dickey 1996-on * ****************************************************************************/ -/* $Id: test.priv.h,v 1.76 2008/03/29 20:29:10 tom Exp $ */ +/* $Id: test.priv.h,v 1.77 2008/04/12 19:25:48 tom Exp $ */ #ifndef __TEST_PRIV_H #define __TEST_PRIV_H 1 @@ -449,6 +449,7 @@ extern int optind; #endif #else #define typeMalloc(type,n) (type *) malloc((n) * sizeof(type)) +#define typeCalloc(type,elts) (type *) calloc((elts), sizeof(type)) #define typeRealloc(type,n,p) (type *) realloc(p, (n) * sizeof(type)) #endif