From 599c887d12d406296f356a02b1088f04ffe1f26e Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sun, 6 Apr 2025 23:37:07 -0600 Subject: libcr_ipc: Have *_DECLARE() allow+require semicolons --- libcr_ipc/tests/test_chan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libcr_ipc/tests/test_chan.c') diff --git a/libcr_ipc/tests/test_chan.c b/libcr_ipc/tests/test_chan.c index 9d6eecf..9b6f018 100644 --- a/libcr_ipc/tests/test_chan.c +++ b/libcr_ipc/tests/test_chan.c @@ -1,6 +1,6 @@ /* libcr_ipc/tests/test_chan.c - Tests for * - * Copyright (C) 2024 Luke T. Shumaker + * Copyright (C) 2024-2025 Luke T. Shumaker * SPDX-License-Identifier: AGPL-3.0-or-later */ @@ -9,7 +9,7 @@ #include "test.h" -CR_CHAN_DECLARE(intchan, int) +CR_CHAN_DECLARE(intchan, int); COROUTINE cr_producer(void *_ch) { intchan_t *ch = _ch; -- cgit v1.2.3-2-g168b