summaryrefslogtreecommitdiffstats
path: root/src/isode/psap/oid_free.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/isode/psap/oid_free.c')
-rw-r--r--src/isode/psap/oid_free.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/isode/psap/oid_free.c b/src/isode/psap/oid_free.c
deleted file mode 100644
index 1e41f980f1..0000000000
--- a/src/isode/psap/oid_free.c
+++ /dev/null
@@ -1,35 +0,0 @@
-/* oid_free.c - free an object identifier */
-
-/*
- * isode/psap/oid_free.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 oid_free (oid)
-register OID oid;
-{
- if (oid == NULLOID)
- return;
-
- if (oid -> oid_elements)
- free ((char *) oid -> oid_elements);
-
- free ((char *) oid);
-}