aboutsummaryrefslogtreecommitdiff
path: root/have
diff options
context:
space:
mode:
Diffstat (limited to 'have')
-rw-r--r--have/queue_h.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/have/queue_h.c b/have/queue_h.c
index d503040..81d3c61 100644
--- a/have/queue_h.c
+++ b/have/queue_h.c
@@ -18,12 +18,18 @@
#include <stddef.h>
-struct ibuf {
- TAILQ_ENTRY(ibuf) entry;
-};
+TAILQ_HEAD(tailhead, entry) head;
+struct entry {
+ TAILQ_ENTRY(entry) entries;
+} *np, *nt;
int
main(void)
{
+ TAILQ_INIT(&head);
+ TAILQ_FOREACH_SAFE(np, &head, entries, nt) {
+ /* nop */;
+ }
+
return 0;
}