aboutsummaryrefslogtreecommitdiff
path: root/ls_queue.h
diff options
context:
space:
mode:
authorLion Kortlepel <[email protected]>2026-01-15 00:35:23 +0100
committerLion Kortlepel <[email protected]>2026-01-15 00:36:10 +0100
commitabf6368bb7b9ca2f2636e2a56d20b4848dbcf48c (patch)
treeecd38f395e5d528e25b0625dc56aecdabf636c98 /ls_queue.h
parent3553e8f85014d2273b50dc2db6b2cc1c5531369b (diff)
downloadqueue-abf6368bb7b9ca2f2636e2a56d20b4848dbcf48c.tar.zst
queue-abf6368bb7b9ca2f2636e2a56d20b4848dbcf48c.zip
feat!: fix C89 compliance by removing `inline`
bump to v2.1
Diffstat (limited to 'ls_queue.h')
-rw-r--r--ls_queue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ls_queue.h b/ls_queue.h
index e9582d7..0c8dcac 100644
--- a/ls_queue.h
+++ b/ls_queue.h
@@ -2,7 +2,7 @@
/* Lion's Standard (LS) type-safe ANSI C queue.
*
- * Version: 2.0
+ * Version: 2.1
* Repo: https://github.com/lionkor/ls_queue
* SPDX-License-Identifier: MIT
*
@@ -101,7 +101,7 @@
size_t read; \
size_t write; \
} name; \
- _ls_QUEUE_IMPL_DETAIL(T, name, cap, static inline)
+ _ls_QUEUE_IMPL_DETAIL(T, name, cap, static)
#define LS_QUEUE_IMPL(T, name, cap) \
_ls_QUEUE_IMPL_DETAIL(T, name, cap, )