1#include <X11/Xlib.h>
2#include <X11/Intrinsic.h>
3
4char *xmalloc(int n)
5{
6    return XtMalloc(n);
7}
8