|
@@ -69,6 +69,7 @@
|
|
|
#include "utils.h"
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
int process_arguments (int, char **);
|
|
int process_arguments (int, char **);
|
|
|
|
|
+const char *progname = "check_game";
|
|
|
|
|
|
|
|
#define QSTAT_DATA_DELIMITER ","
|
|
#define QSTAT_DATA_DELIMITER ","
|
|
|
|
|
|
|
@@ -291,3 +292,8 @@ process_arguments (int argc, char **argv)
|
|
|
|
|
|
|
|
return OK;
|
|
return OK;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+void print_usage (void)
|
|
|
|
|
+{
|
|
|
|
|
+ return STATE_OK;
|
|
|
|
|
+}
|