summaryrefslogtreecommitdiff
path: root/libdyn/dyn_paranoid.c
diff options
context:
space:
mode:
authorGravatar Karl Ramm <kcr@1ts.org>2009-10-10 15:08:21 +0000
committerGravatar Karl Ramm <kcr@1ts.org>2009-10-10 15:08:21 +0000
commitfc1f9cb5ffcbc0103beb0c03d3bc0f4543f4148b (patch)
tree9aad64efc9e42dcf549290ce879d1a9c61235185 /libdyn/dyn_paranoid.c
parenteb7353085a3e26cf06b3f9e911ff8f15e549490d (diff)
With xzwrite gone, we don't need libdyn.
Diffstat (limited to 'libdyn/dyn_paranoid.c')
-rw-r--r--libdyn/dyn_paranoid.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/libdyn/dyn_paranoid.c b/libdyn/dyn_paranoid.c
deleted file mode 100644
index 1c7b81c..0000000
--- a/libdyn/dyn_paranoid.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * This file is part of libdyn.a, the C Dynamic Object library. It
- * contains the source code for the function DynDebug().
- *
- * There are no restrictions on this code; however, if you make any
- * changes, I request that you document them so that I do not get
- * credit or blame for your modifications.
- *
- * Written by Barr3y Jaspan, Student Information Processing Board (SIPB)
- * and MIT-Project Athena, 1989.
- */
-
-#include <stdio.h>
-
-#include "dynP.h"
-
-int
-DynParanoid(DynObject obj, int state)
-{
- obj->paranoid = state;
-
- if (obj->debug)
- fprintf(stderr, "dyn: paranoid: Paranoia set to %d.\n", state);
- return DYN_OK;
-}