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