chiark / gitweb /
remove obsolete file
authorian <ian>
Mon, 12 May 2008 22:56:38 +0000 (22:56 +0000)
committerian <ian>
Mon, 12 May 2008 22:56:38 +0000 (22:56 +0000)
hostside/multiplex.h [deleted file]

diff --git a/hostside/multiplex.h b/hostside/multiplex.h
deleted file mode 100644 (file)
index 0c66f2c..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * multiplexer daemon
- * declarations
- */
-
-#ifndef MULTIPLEX_H
-#define MULTIPLEX_H
-
-#include "daemons.h"
-
-/*---------- from output.c ----------*/
-
-typedef unsigned long Selector;
-#include "selectors.h"
-
-void sovprintf(Selector sel, const char *fmt, va_list al)
-     __attribute__((format(printf,2,0)));
-void soprintf(Selector sel, const char *fmt, ...)
-     __attribute__((format(printf,2,3)));
-void sowrite(Selector sel, const char *data, int l);
-
-void serial_transmit(const PicInsn *pi);
-
-void output_hex(Selector sel, const char *work,
-               const Byte *command, int length);
-
-
-
-
- unredacted
-
-struct ClientList { Client *head, *tail; };
-extern struct ClientList clients;
-
-struct Client {
-  CommandInput ci;
-  Client *back, *next;
-  Selector sel;
-};
-
-
-
-
-#endif /*MULTIPLEX_H*/