#include "wm.h"

void wmlog(char *s)
{
	FILE *logfile;
	logfile = fopen(LOGFILE, "a+");
	fputs(s, logfile);
	fclose(logfile);
}

