diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-02-06 23:22:27 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-02-06 23:22:27 +0000 |
commit | 46511805037cf33bd9e2c6286e33417d9fd35d1f (patch) | |
tree | 1eeeeb3e2184b8dd28e011c6402532e396493ad7 /array.h | |
parent | bb53c20c1882cbc909d4fe2ae3c6ad665da6abf6 (diff) | |
download | rtmux-46511805037cf33bd9e2c6286e33417d9fd35d1f.tar.gz rtmux-46511805037cf33bd9e2c6286e33417d9fd35d1f.tar.bz2 rtmux-46511805037cf33bd9e2c6286e33417d9fd35d1f.zip |
Use the array.h code for the causes list.
Diffstat (limited to 'array.h')
-rw-r--r-- | array.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; \ |