aboutsummaryrefslogtreecommitdiffstats
path: root/unlist.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-06-11 16:37:09 +0200
committerMattias Andrée <maandree@kth.se>2022-06-11 16:37:09 +0200
commitfcfe59c1f2219408ac2a9cd84b386816ff252221 (patch)
tree0f46c009babfba2d0200ece3ecce067c548a66b6 /unlist.c
parentRemove `static` from some `static inline` (diff)
downloadlibsimple-fcfe59c1f2219408ac2a9cd84b386816ff252221.tar.gz
libsimple-fcfe59c1f2219408ac2a9cd84b386816ff252221.tar.bz2
libsimple-fcfe59c1f2219408ac2a9cd84b386816ff252221.tar.xz
Fix warnings, replace some static inline with inline + extern inline, and fix glibc support
Diffstat (limited to 'unlist.c')
-rw-r--r--unlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unlist.c b/unlist.c
index 192fad0..92b7f8f 100644
--- a/unlist.c
+++ b/unlist.c
@@ -17,7 +17,7 @@ main(void)
size_t i, n;
for (i = 0, n = 10; i < n; i++)
- buf[i] = i;
+ buf[i] = (char)i;
LIBSIMPLE_UNLIST(buf, 4, &n);
LIBSIMPLE_UNLIST(buf, 9 - 1, &n);
LIBSIMPLE_UNLIST(buf, 6 - 1, &n);
@@ -31,7 +31,7 @@ main(void)
assert(buf[6] == 8);
for (i = 0, n = 10; i < n; i++)
- intarray[i] = i;
+ intarray[i] = (int)i;
LIBSIMPLE_UNLIST(intarray, 4, &n);
LIBSIMPLE_UNLIST(intarray, 9 - 1, &n);
LIBSIMPLE_UNLIST(intarray, 6 - 1, &n);