summaryrefslogtreecommitdiff
path: root/sysinfo.c
blob: 5d1eacbfc41d135b7725d21f667c02a73b6685de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "sysinfo.h"

int bbs_sysinfo( term_screen *ts )
{
	int ret=0;

	printf("BBS:MicroBBS %s (%s)\n", BUILD_VERSION, BUILD_DATE);
	printf("Author: FreeArtMan\n");
	printf("Contributor: epoch\n");
	printf("Ideological support: irc://hacking.allowed.org#default\n");

	return ret;
}