diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-18 22:15:48 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-18 22:15:48 +0100 |
commit | a24012cf7cdf9099cac204e406e5a55520953bb8 (patch) | |
tree | 5226301454561987a0321e18ec5ffe747ba40629 | |
parent | 2df41c37f54fda12fc211e521a4da6a746fa992a (diff) |
Sorted definitions
-rw-r--r-- | FICS/shutdown.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FICS/shutdown.c b/FICS/shutdown.c index e2ff1f1..022898f 100644 --- a/FICS/shutdown.c +++ b/FICS/shutdown.c @@ -8,11 +8,11 @@ #include "shutdown.h" #include "utils.h" -PRIVATE int shutdownTime = 0; -PRIVATE int lastTimeLeft; -PRIVATE int shutdownStartTime; PRIVATE char downer[1024]; PRIVATE char reason[1024]; +PRIVATE int lastTimeLeft; +PRIVATE int shutdownStartTime; +PRIVATE int shutdownTime = 0; PUBLIC void output_shut_mess() |