[BACK]Return to verify.c CVS log [TXT][DIR] Up to [contributed] / early-roguelike / urogue

File: [contributed] / early-roguelike / urogue / verify.c (download)

Revision 1.1, Tue Mar 9 20:01:23 2021 UTC (3 years, 1 month ago) by rubenllorente
Branch point for: MAIN

Initial revision

/*
    verify.c - exiting functions

    UltraRogue: The Ultimate Adventure in the Dungeons of Doom
    Copyright (C) 1995 Herb Chong
    All rights reserved.
*/

static char sccsid[] = "%W% %G%";

#include "rogue.h"

void verify_function(const char *file, const int line)
{
	char s[80];

	sprintf(s, "Verify failure in %s at line %d\n", file, line);
	fatal(s);
}