summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
authorSimon Rettberg2019-05-14 14:14:48 +0200
committerSimon Rettberg2019-05-14 14:14:48 +0200
commit6cbc590a92a52a905b149608f63f459f0d785c1d (patch)
tree33305f0ecb19b90d1741e189339df3f20ab49f9d /src/util.h
parentEnforce minimum delay for RPC actions if user is active (diff)
downloadidle-daemon-6cbc590a92a52a905b149608f63f459f0d785c1d.tar.gz
idle-daemon-6cbc590a92a52a905b149608f63f459f0d785c1d.tar.xz
idle-daemon-6cbc590a92a52a905b149608f63f459f0d785c1d.zip
f() -> f(void)
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util.h b/src/util.h
index 2c3bc51..d8cf887 100644
--- a/src/util.h
+++ b/src/util.h
@@ -9,11 +9,11 @@ extern int _testmode;
struct user;
// Get monotonic clock (seconds)
-time_t now();
+time_t now( void );
-void init_time();
+void init_time( void );
-bool doublefork();
+bool doublefork( void );
bool waitRead( int fd, int ms );