blob: 75e85de8b13272b232f3d4cdbeb15a90d794a7a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* 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 DynDebug(obj, state)
DynObjectP obj;
int state;
{
obj->debug = state;
fprintf(stderr, "dyn: debug: Debug state set to %d.\n", state);
return DYN_OK;
}
|