diff options
| author | J08nY | 2025-03-27 11:59:41 +0100 |
|---|---|---|
| committer | J08nY | 2025-03-27 11:59:41 +0100 |
| commit | e9c6d35a6efa5541cac33398ceb04e7fb721d6cd (patch) | |
| tree | a65c049be90df52772d129a15fa4f8755463f598 /src/util/timeout.h | |
| parent | 0684f9dc440a4909d89392aa0c16fd9ba5249e76 (diff) | |
| download | ecgen-e9c6d35a6efa5541cac33398ceb04e7fb721d6cd.tar.gz ecgen-e9c6d35a6efa5541cac33398ceb04e7fb721d6cd.tar.zst ecgen-e9c6d35a6efa5541cac33398ceb04e7fb721d6cd.zip | |
Fixup issues in clang with pedantic.
Diffstat (limited to '')
| -rw-r--r-- | src/util/timeout.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util/timeout.h b/src/util/timeout.h index 57e3d22..6f6805b 100644 --- a/src/util/timeout.h +++ b/src/util/timeout.h @@ -69,19 +69,19 @@ extern __thread struct sigevent *sevp; } \ } -void timeout_thread_init(); +void timeout_thread_init(void); -void timeout_thread_quit(); +void timeout_thread_quit(void); /** * @brief Initialize the timeout system. * @return whether the initalization was successful */ -bool timeout_init(); +bool timeout_init(void); /** * @brief Deinitialize the timeout system. */ -void timeout_quit(); +void timeout_quit(void); #endif // ECGEN_UTIL_TIMEOUT_H |
