diff options
| author | Tyge Løvset <[email protected]> | 2020-09-16 09:59:18 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2020-09-16 09:59:18 +0200 |
| commit | 47b5b5ce53ed4607bf557e2b53a1286bc8041e94 (patch) | |
| tree | 71219fd9554c957b4e120d34096318fc11f8fc80 /examples/queue.c | |
| parent | d3d68271e1c4ff0f56d06730f79349197f46850c (diff) | |
| download | STC-modified-47b5b5ce53ed4607bf557e2b53a1286bc8041e94.tar.gz STC-modified-47b5b5ce53ed4607bf557e2b53a1286bc8041e94.zip | |
Changed earlier declare_<container>(..) macro to typedef_<container>(..)
Diffstat (limited to 'examples/queue.c')
| -rw-r--r-- | examples/queue.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 <stc/cqueue.h>
#include <stdio.h>
-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;
|
