diff options
| author | Tyge Løvset <[email protected]> | 2023-03-12 18:36:58 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2023-03-12 18:36:58 +0100 |
| commit | 9c4bfa7a3f0afe0f9f293fb4e2042e3babf31467 (patch) | |
| tree | f2193679f55d4fca29d11b0dce1a104183b1f9ac /misc | |
| parent | f68fee2ecc3f03261d983717795079dda01401d7 (diff) | |
| download | STC-modified-9c4bfa7a3f0afe0f9f293fb4e2042e3babf31467.tar.gz STC-modified-9c4bfa7a3f0afe0f9f293fb4e2042e3babf31467.zip | |
Fix warning.
Diffstat (limited to 'misc')
| -rw-r--r-- | misc/examples/new_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/examples/new_list.c b/misc/examples/new_list.c index 6dbe80b4..23709a64 100644 --- a/misc/examples/new_list.c +++ b/misc/examples/new_list.c @@ -11,7 +11,6 @@ struct MyStruct { #define i_val int #define i_opt c_is_forward #define i_tag i32 -#define i_extern // define _clist_mergesort() #include <stc/clist.h> struct Point { int x, y; } typedef Point; @@ -53,6 +52,7 @@ int main() c_forlist (i, float, {123.3f, 321.2f, -32.2f, 78.2f}) clist_float_push_back(&flst, *i.ref); + clist_float_sort(&flst); c_foreach (i, clist_float, flst) printf(" %g", *i.ref); } |
