/* DebugLibT.c */

#define DEBUGLIB                                // turn debugging on

//#include "<Lib$Dir>.DebugLib/DebugLib.h"     // fails: no remotedb
#include "DebugLib.h"                         // modified to remove remotedb

int main(void)
{
    int size = 30;
    char buf[size];

    debug_initialise("DebugLibT",0,"");
    debug_set_device(REPORTER_OUTPUT);

    dprintf(("","\\t Hello, Reporter!\n"));

    sprintf(buf,"some data in buffer");
    ddumpbuf("",buf,size,0);

    return(0);
}

/* end of DebugLibT.c */
