"%fe", "%ff"
};
-static int htmlfd = STDOUT_FILENO;
-
char *fmt(const char *format, ...)
{
static char buf[8][1024];
void html_raw(const char *data, size_t size)
{
- if (write(htmlfd, data, size) != size)
+ if (write(STDOUT_FILENO, data, size) != size)
die_errno("write error on html output");
}