diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-06 23:37:07 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-07 01:36:34 -0600 |
commit | 599c887d12d406296f356a02b1088f04ffe1f26e (patch) | |
tree | e2e4361fdcc8033ed02e3f144f66064e21793be8 /cmd | |
parent | b46d9f8886517c5e54cafc8bba1a6e0e30fdb691 (diff) |
libcr_ipc: Have *_DECLARE() allow+require semicolons
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/sbc_harness/usb_keyboard.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/sbc_harness/usb_keyboard.h b/cmd/sbc_harness/usb_keyboard.h index 210014d..cf8483b 100644 --- a/cmd/sbc_harness/usb_keyboard.h +++ b/cmd/sbc_harness/usb_keyboard.h @@ -1,6 +1,6 @@ /* sbc_harness/usb_keyboard.h - Implementation of a USB keyboard device * - * Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com> + * Copyright (C) 2024-2025 Luke T. Shumaker <lukeshu@lukeshu.com> * SPDX-License-Identifier: AGPL-3.0-or-later */ @@ -12,7 +12,7 @@ #include <libcr/coroutine.h> /* for COROUTINE */ #include <libcr_ipc/rpc.h> /* for CR_RPC_DECLARE */ -CR_RPC_DECLARE(usb_keyboard_rpc, uint32_t, int) +CR_RPC_DECLARE(usb_keyboard_rpc, uint32_t, int); void usb_keyboard_init(void); COROUTINE usb_keyboard_cr(void *arg); |