xref: /illumos-gate/usr/src/lib/krb5/dyn/dyn_debug.c (revision 1da57d55)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * This file is part of libdyn.a, the C Dynamic Object library.  It
3*7c478bd9Sstevel@tonic-gate  * contains the source code for the function DynDebug().
4*7c478bd9Sstevel@tonic-gate  *
5*7c478bd9Sstevel@tonic-gate  * There are no restrictions on this code; however, if you make any
6*7c478bd9Sstevel@tonic-gate  * changes, I request that you document them so that I do not get
7*7c478bd9Sstevel@tonic-gate  * credit or blame for your modifications.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  * Written by Barr3y Jaspan, Student Information Processing Board (SIPB)
10*7c478bd9Sstevel@tonic-gate  * and MIT-Project Athena, 1989.
11*7c478bd9Sstevel@tonic-gate  */
12*7c478bd9Sstevel@tonic-gate 
13*7c478bd9Sstevel@tonic-gate #include <stdio.h>
14*7c478bd9Sstevel@tonic-gate 
15*7c478bd9Sstevel@tonic-gate #include "dynP.h"
16*7c478bd9Sstevel@tonic-gate 
DynDebug(obj,state)17*7c478bd9Sstevel@tonic-gate int DynDebug(obj, state)
18*7c478bd9Sstevel@tonic-gate    DynObjectP obj;
19*7c478bd9Sstevel@tonic-gate    int state;
20*7c478bd9Sstevel@tonic-gate {
21*7c478bd9Sstevel@tonic-gate      obj->debug = state;
22*7c478bd9Sstevel@tonic-gate 
23*7c478bd9Sstevel@tonic-gate      fprintf(stderr, "dyn: debug: Debug state set to %d.\n", state);
24*7c478bd9Sstevel@tonic-gate      return DYN_OK;
25*7c478bd9Sstevel@tonic-gate }
26