diff options
author | Tiago Cunha <tcunha@gmx.com> | 2010-02-08 18:29:32 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2010-02-08 18:29:32 +0000 |
commit | 36a80b2cd639fc82b8fc3d8c3672cc88ae00f1ac (patch) | |
tree | 433a4b1783d04085f0859b4fc6d7550ab7dd5913 /array.h | |
parent | c6ba78137977bd7a447fd5f97b205544c2b41505 (diff) | |
download | rtmux-36a80b2cd639fc82b8fc3d8c3672cc88ae00f1ac.tar.gz rtmux-36a80b2cd639fc82b8fc3d8c3672cc88ae00f1ac.tar.bz2 rtmux-36a80b2cd639fc82b8fc3d8c3672cc88ae00f1ac.zip |
Sync OpenBSD patchset 640:
Use the array.h code for the causes list.
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; \ |