static unsigned char outbuf[SMALLBUF];
static agxbuf ps_xb;
+#if 0
static void cleanup(void)
{
agxbfree(&ps_xb);
}
+#endif
/* parse_style:
* This is one of the worse internal designs in graphviz.
if (is_first) {
agxbinit(&ps_xb, SMALLBUF, outbuf);
+#if 0
atexit(cleanup);
+#endif
is_first = FALSE;
}
static unsigned char userbuf[SMALLBUF];
static agxbuf xb;
+#if 0
static void cleanup(void)
{
agxbfree(&xb);
}
#endif
+#endif
char *gvUsername(void)
{
struct passwd *p;
if (first) {
agxbinit(&xb, SMALLBUF, userbuf);
+#if 0
atexit(cleanup);
+#endif
first = 0;
}
p = (struct passwd *) getpwuid(getuid());