diff options
Diffstat (limited to 'array.h')
-rw-r--r-- | array.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: array.h,v 1.9 2009-11-02 21:34:32 tcunha Exp $ */ +/* $Id: array.h,v 1.10 2010-02-08 18:29:32 tcunha Exp $ */ /* * Copyright (c) 2006 Nicholas Marriott <nicm@users.sourceforge.net> @@ -19,6 +19,8 @@ #ifndef ARRAY_H #define ARRAY_H +#define ARRAY_INITIALIZER { NULL, 0, 0 } + #define ARRAY_DECL(n, c) \ struct n { \ c *list; \ |