aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FICS/build.mk1
-rw-r--r--FICS/iset.cpp12
-rw-r--r--FICS/iset.h16
3 files changed, 29 insertions, 0 deletions
diff --git a/FICS/build.mk b/FICS/build.mk
index ca1dc3d..3dad928 100644
--- a/FICS/build.mk
+++ b/FICS/build.mk
@@ -16,6 +16,7 @@ OBJS = $(SRC_DIR)adminproc.o\
$(SRC_DIR)formula.o\
$(SRC_DIR)gamedb.o\
$(SRC_DIR)gameproc.o\
+ $(SRC_DIR)iset.o\
$(SRC_DIR)legal.o\
$(SRC_DIR)lists.o\
$(SRC_DIR)matchproc.o\
diff --git a/FICS/iset.cpp b/FICS/iset.cpp
new file mode 100644
index 0000000..da687ab
--- /dev/null
+++ b/FICS/iset.cpp
@@ -0,0 +1,12 @@
+#include "stdinclude.h"
+#include "common.h"
+
+#include "iset.h"
+
+PUBLIC int
+com_iset(int p, param_list param)
+{
+ (void) p;
+ (void) param;
+ return COM_OK;
+}
diff --git a/FICS/iset.h b/FICS/iset.h
new file mode 100644
index 0000000..f88d9fb
--- /dev/null
+++ b/FICS/iset.h
@@ -0,0 +1,16 @@
+#ifndef GUARD_ISET_H
+#define GUARD_ISET_H
+
+#include "command.h" /* param_list */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+int com_iset(int, param_list);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif