summaryrefslogtreecommitdiffstats
path: root/src/isode/psap/set_addon.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/isode/psap/set_addon.c')
-rw-r--r--src/isode/psap/set_addon.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/isode/psap/set_addon.c b/src/isode/psap/set_addon.c
deleted file mode 100644
index 7aa5e6295e..0000000000
--- a/src/isode/psap/set_addon.c
+++ /dev/null
@@ -1,38 +0,0 @@
-/* set_addon.c - add member to end of a set */
-
-/*
- * isode/psap/set_addon.c
- */
-
-/*
- * NOTICE
- *
- * Acquisition, use, and distribution of this module and related
- * materials are subject to the restrictions of a license agreement.
- * Consult the Preface in the User's Manual for the full terms of
- * this agreement.
- *
- */
-
-
-/* LINTLIBRARY */
-
-#include <stdio.h>
-#include "psap.h"
-
-/* */
-
-int set_addon (pe, last, new)
-PE pe,
- last,
- new;
-{
- if (pe == NULLPE)
- return NOTOK;
- if (last == NULLPE)
- return set_add (pe, new);
- new -> pe_offset = pe -> pe_cardinal++;
- last -> pe_next = new;
-
- return OK;
-}