diff options
author | Max Kellermann <max@duempel.org> | 2015-03-03 20:05:08 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-03-03 20:05:08 +0100 |
commit | 1c90b0c19dff120fb4fd8acf413ddbdf16addf28 (patch) | |
tree | 11328a0e5b4df0059e6002398bbd383864e45506 /src/IOThread.hxx | |
parent | cd776ff1a8ae0b0c2ef0068c0ee81332cddac134 (diff) | |
download | mpd-1c90b0c19dff120fb4fd8acf413ddbdf16addf28.tar.gz mpd-1c90b0c19dff120fb4fd8acf413ddbdf16addf28.tar.xz mpd-1c90b0c19dff120fb4fd8acf413ddbdf16addf28.zip |
*: change C-style prototypes, drop "(void)"
Diffstat (limited to '')
-rw-r--r-- | src/IOThread.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/IOThread.hxx b/src/IOThread.hxx index 99dc696a7..c7edd67b4 100644 --- a/src/IOThread.hxx +++ b/src/IOThread.hxx @@ -25,7 +25,7 @@ class EventLoop; void -io_thread_init(void); +io_thread_init(); void io_thread_start(); @@ -36,7 +36,7 @@ io_thread_start(); * only. */ void -io_thread_run(void); +io_thread_run(); /** * Ask the I/O thread to quit, but does not wait for it. Usually, you @@ -44,10 +44,10 @@ io_thread_run(void); * includes this. */ void -io_thread_quit(void); +io_thread_quit(); void -io_thread_deinit(void); +io_thread_deinit(); gcc_const EventLoop & @@ -58,6 +58,6 @@ io_thread_get(); */ gcc_pure bool -io_thread_inside(void); +io_thread_inside(); #endif |