xref: /netbsd-src/external/gpl2/groff/dist/src/libs/libxutil/xmalloc.c (revision 89a07cf815a29524268025a1139fac4c5190f765)
1 /*	$NetBSD: xmalloc.c,v 1.1.1.1 2016/01/13 18:41:48 christos Exp $	*/
2 
3 #include <X11/Xlib.h>
4 #include <X11/Intrinsic.h>
5 
xmalloc(int n)6 char *xmalloc(int n)
7 {
8     return XtMalloc(n);
9 }
10