From 47b5b5ce53ed4607bf557e2b53a1286bc8041e94 Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Wed, 16 Sep 2020 09:59:18 +0200 Subject: Changed earlier declare_(..) macro to typedef_(..) --- examples/queue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/queue.c') diff --git a/examples/queue.c b/examples/queue.c index addecaa6..330e79fe 100644 --- a/examples/queue.c +++ b/examples/queue.c @@ -2,8 +2,8 @@ #include #include -c_clist(i, int); -c_cqueue(i, clist_i); // min-heap (increasing values) +typedef_clist(i, int); +typedef_cqueue(i, clist_i); // min-heap (increasing values) int main() { int n = 10000000; -- cgit v1.2.3