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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
/********************************************************************
* $Author: jgoerzen $
* $Revision: 1.1 $
* $Date: 2000/08/19 00:28:56 $
* $Source: /home/jgoerzen/tmp/gopher-umn/gopher/head/object/Debug.c,v $
* $State: Exp $
*
* Paul Lindner, University of Minnesota CIS.
*
* Copyright 1991, 92, 93 by the Regents of the University of Minnesota
* see the file "Copyright" in the distribution for conditions of use.
*********************************************************************
* MODULE: Debug.c
* Debugging utilities..
*********************************************************************
* Revision History:
* $Log: Debug.c,v $
* Revision 1.1 2000/08/19 00:28:56 jgoerzen
* Initial revision
*
* Revision 3.3 1994/01/21 04:07:21 lindner
* Update function declaration (alanc)
*
* Revision 3.2 1993/07/29 20:00:22 lindner
* Added Debugf
*
*
*********************************************************************/
#include <stdio.h>
int DEBUG = 0;
#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#ifdef __STDC__
void Debugf(const char *fmt, ...)
#else /* !__STDC__ */
void
Debugf(fmt, va_alist)
char *fmt;
va_dcl
#endif /* __STDC__ */
{
va_list args;
#ifdef __STDC__
va_start(args, fmt);
#else
va_start(args);
#endif
(void) vfprintf(stderr, fmt, args);
}
|