diff options
Diffstat (limited to 'examples/list.c')
| -rw-r--r-- | examples/list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/list.c b/examples/list.c index 2eb1f4c0..53b8711f 100644 --- a/examples/list.c +++ b/examples/list.c @@ -2,10 +2,10 @@ #include <time.h>
#include <stc/clist.h>
#include <stc/crandom.h>
-declare_clist(ix, uint64_t);
+declare_CList(ix, uint64_t);
int main() {
- clist_ix list = clist_init;
+ CList_ix list = clist_init;
crandom32_t pcg = crandom32_init(time(NULL));
int n;
for (int i=0; i<10000000; ++i) // ten million
|
