aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ss/ss_err.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ss/ss_err.c')
-rw-r--r--lib/ss/ss_err.c51
1 files changed, 0 insertions, 51 deletions
diff --git a/lib/ss/ss_err.c b/lib/ss/ss_err.c
deleted file mode 100644
index 7b97a007..00000000
--- a/lib/ss/ss_err.c
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * ss_err.c:
- * This file is automatically generated; please do not edit it.
- */
-#ifdef __STDC__
-#define NOARGS void
-#else
-#define NOARGS
-#define const
-#endif
-
-static const char * const text[] = {
- "Subsystem aborted",
- "Version mismatch",
- "No current invocation",
- "No info directory",
- "Command not found",
- "Command line aborted",
- "End-of-file reached",
- "Permission denied",
- "Request table not found",
- "No info available",
- "Shell escapes are disabled",
- "Sorry, this request is not yet implemented",
- 0
-};
-
-struct error_table {
- char const * const * msgs;
- long base;
- int n_msgs;
-};
-struct et_list {
- struct et_list *next;
- const struct error_table * table;
-};
-extern struct et_list *_et_list;
-
-static const struct error_table et = { text, 748800L, 12 };
-
-static struct et_list link = { 0, 0 };
-
-void initialize_ss_error_table (NOARGS);
-
-void initialize_ss_error_table (NOARGS) {
- if (!link.table) {
- link.next = _et_list;
- link.table = &et;
- _et_list = &link;
- }
-}