summaryrefslogtreecommitdiff
path: root/src/libs/libxutil/xmalloc.c
blob: f31056bfd73537a5f9b967cee551d15bfe762b02 (plain)
1
2
3
4
5
6
7
#include <X11/Xlib.h>
#include <X11/Intrinsic.h>

char *xmalloc(int n)
{
    return XtMalloc(n);
}