diff options
| author | Tyge Løvset <[email protected]> | 2020-07-28 07:12:23 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2020-07-28 07:12:23 +0200 |
| commit | 3112061bd5cc45a175f230ef3458a4bc06c5c5a2 (patch) | |
| tree | 57b2b9f3f0184bdf670787dfa48feff212782f0d /examples/list.c | |
| parent | 6a0b7f1f43f408887e83fc45452dc133496227b4 (diff) | |
| download | STC-modified-3112061bd5cc45a175f230ef3458a4bc06c5c5a2.tar.gz STC-modified-3112061bd5cc45a175f230ef3458a4bc06c5c5a2.zip | |
Reverted to before lowercasing types
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
|
