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