#include <X11/IntrinsicP.h>
#include <X11/ShellP.h>
#include <X11/Xaw/LabelP.h>
#include <X11/Xaw/CommandP.h>
#include <stdio.h>

void debugScreen(s)
     Screen* s;
{
}

void debugDisplay(d)
     Display *d;
{
}

void debugWidget(w)
     WidgetRec *w;
{
   fprintf(stderr,"Xt: x= %d y= %d w= %d h= %d \n", w->core.x, w->core.y, w->core.width, w->core.height);
}

void debugLabel(w)
     LabelWidget w;
{
}

void debugCommand(w)
     CommandWidget w;
{
}

void debugShell(w)
     ApplicationShellWidget w;
{
}
