summaryrefslogtreecommitdiff
path: root/kerberosIV/include
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1996-11-16 21:53:13 +0000
committerJason Downs <downsj@cvs.openbsd.org>1996-11-16 21:53:13 +0000
commit6e21d0e99052f9aa63f868f8cca92af2bf9df8c4 (patch)
treeb7b65b9b90c06fd1540ea0674cd3917b57a5117d /kerberosIV/include
parent323b04aa2a18a840696e1f531c46df669f2a979a (diff)
Fix more libss stuff.
Diffstat (limited to 'kerberosIV/include')
-rw-r--r--kerberosIV/include/Makefile4
-rw-r--r--kerberosIV/include/ss/Makefile15
-rw-r--r--kerberosIV/include/ss/ss.h65
3 files changed, 2 insertions, 82 deletions
diff --git a/kerberosIV/include/Makefile b/kerberosIV/include/Makefile
index 0edee405865..6f9af9462f2 100644
--- a/kerberosIV/include/Makefile
+++ b/kerberosIV/include/Makefile
@@ -1,5 +1,5 @@
-# $Id: Makefile,v 1.1 1995/12/14 06:52:34 tholo Exp $
+# $Id: Makefile,v 1.2 1996/11/16 21:52:36 downsj Exp $
-SUBDIR= kerberosIV ss
+SUBDIR= kerberosIV
.include <bsd.subdir.mk>
diff --git a/kerberosIV/include/ss/Makefile b/kerberosIV/include/ss/Makefile
deleted file mode 100644
index 16b8d24aed2..00000000000
--- a/kerberosIV/include/ss/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-# $Id: Makefile,v 1.3 1996/07/31 18:27:35 deraadt Exp $
-
-FILES= ss.h
-NOOBJ= noobj
-
-all include clean cleandir depend lint tags:
-
-includes:
- @echo installing ${FILES}
- @-for i in ${FILES}; do \
- cmp -s $$i ${DESTDIR}/usr/include/ss/$$i || \
- install -c -m 444 $$i ${DESTDIR}/usr/include/ss/$$i; \
- done
-
-.include <bsd.prog.mk>
diff --git a/kerberosIV/include/ss/ss.h b/kerberosIV/include/ss/ss.h
deleted file mode 100644
index 97521c9c1c8..00000000000
--- a/kerberosIV/include/ss/ss.h
+++ /dev/null
@@ -1,65 +0,0 @@
-/* $Id: ss.h,v 1.1 1995/12/14 06:52:35 tholo Exp $ */
-
-/*-
- * Copyright 1987, 1988 by the Student Information Processing Board
- * of the Massachusetts Institute of Technology
- *
- * Permission to use, copy, modify, and distribute this software
- * and its documentation for any purpose and without fee is
- * hereby granted, provided that the above copyright notice
- * appear in all copies and that both that copyright notice and
- * this permission notice appear in supporting documentation,
- * and that the names of M.I.T. and the M.I.T. S.I.P.B. not be
- * used in advertising or publicity pertaining to distribution
- * of the software without specific, written prior permission.
- * M.I.T. and the M.I.T. S.I.P.B. make no representations about
- * the suitability of this software for any purpose. It is
- * provided "as is" without express or implied warranty.
- */
-
-#ifndef _SS_H
-#define _SS_H
-
-#include <sys/cdefs.h>
-
-#ifndef NO_SS_ERR_H
-#include <ss/ss_err.h>
-#endif
-
-typedef const struct _ss_request_entry {
- const char * const *command_names; /* whatever */
- void (* const function) __P((int, const char * const *, int, void *));
- const char * const info_string; /* NULL */
- int flags; /* 0 */
-} ss_request_entry;
-
-typedef const struct _ss_request_table {
- int version;
- ss_request_entry *requests;
-} ss_request_table;
-
-#define SS_RQT_TBL_V2 2
-
-typedef struct _ss_rp_options { /* DEFAULT VALUES */
- int version; /* SS_RP_V1 */
- void (*unknown) __P((int, const char * const *, int, void *)); /* call for unknown command */
- int allow_suspend;
- int catch_int;
-} ss_rp_options;
-
-#define SS_RP_V1 1
-
-#define SS_OPT_DONT_LIST 0x0001
-#define SS_OPT_DONT_SUMMARIZE 0x0002
-
-void ss_help __P((int, const char * const *, int, void *));
-char *ss_current_request();
-char *ss_name();
-void ss_error __P((int, long, char const *, ...));
-void ss_perror __P((int, long, char const *));
-int ss_create_invocation __P((char *, char *, char *, ss_request_table *, int *));
-int ss_listen(int);
-void ss_abort_subsystem();
-
-extern ss_request_table ss_std_requests;
-#endif /* _SS_H */