mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-07 04:10:27 -08:00
23 lines
289 B
C
23 lines
289 B
C
/*$Header$
|
|
Implementation of diagnostic interface.
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "mpm.h"
|
|
#include "mpslib.h" /* for mps_lib_stdout */
|
|
|
|
Bool DiagEnabledGlobal = TRUE;
|
|
|
|
Bool DiagIsOn(void)
|
|
{
|
|
return DiagEnabledGlobal;
|
|
}
|
|
|
|
|
|
mps_lib_FILE *DiagStream(void)
|
|
{
|
|
return mps_lib_stdout;
|
|
}
|
|
|
|
|