/* $NetBSD: xmalloc.c,v 1.1.1.1 2016/01/13 18:41:48 christos Exp $ */ #include #include char *xmalloc(int n) { return XtMalloc(n); }