]> code.citadel.org Git - citadel.git/blobdiff - citadel/control.c
Mon Aug 24 20:04:04 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
[citadel.git] / citadel / control.c
index b0cc45f23b849fb7604f831e610c5800e5fdf8a7..6d63d214ae421ef6866509cdeee55fe232eea1d9 100644 (file)
 #include <syslog.h>
 #include "citadel.h"
 #include "server.h"
-#include "proto.h"
+#include "control.h"
+#include "sysdep_decls.h"
 
 struct CitControl CitControl;
 
 /*
  * get_control  -  read the control record into memory.
  */
-void get_control() {
+void get_control(void) {
        FILE *fp;
 
        /* Zero it out.  If the control record on disk is missing or short,
@@ -43,7 +44,7 @@ void get_control() {
 /*
  * put_control  -  write the control record to disk.
  */
-void put_control() {
+void put_control(void) {
        FILE *fp;
 
        fp = fopen("citadel.control", "wb");
@@ -57,7 +58,7 @@ void put_control() {
 /*
  * get_new_message_number()  -  Obtain a new, unique ID to be used for a message.
  */
-long get_new_message_number() {
+long get_new_message_number(void) {
        begin_critical_section(S_CONTROL);
        get_control();
        ++CitControl.MMhighest;
@@ -70,7 +71,7 @@ long get_new_message_number() {
 /*
  * get_new_user_number()  -  Obtain a new, unique ID to be used for a user.
  */
-long get_new_user_number() {
+long get_new_user_number(void) {
        begin_critical_section(S_CONTROL);
        get_control();
        ++CitControl.MMnextuser;