aboutsummaryrefslogtreecommitdiff
path: root/err.c
blob: 07a50a26efdaf917fe76abdf1c74b079f012087e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include "cforum.h"

void
srverr(char *err)
{
	char title[] = "500 Internal Server Error";
	
	printf("Status: %s\n", title);
	printf("Content-Type: text/html\n\n");
	#include "t/err.tc"
}