* converted to autoconf and began port to Digital UNIX
[citadel.git] / webcit / who.c
index f5bac4f9f3c75ec9b8134b3489b77c982cd1f1b9..5f8937b7a1284ecad8deb30aa328bdd840108ab9 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id$ */
+
 #include <stdlib.h>
 #include <unistd.h>
 #include <stdio.h>
@@ -6,6 +8,7 @@
 #include <ctype.h>
 #include <string.h>
 #include "webcit.h"
+#include "child.h"
 
 struct whouser {
        struct whouser *next;
@@ -19,7 +22,7 @@ struct whouser {
 /*
  * who is on?
  */
-void whobbs() {
+void whobbs(void) {
        struct whouser *wlist = NULL;
        struct whouser *wptr = NULL;
        char buf[256],sess,user[256],room[256],host[256];