early-roguelike/urogue/verify.c
2021-05-01 09:51:30 -04:00

17 lines
329 B
C

/*
verify.c - exiting functions
UltraRogue: The Ultimate Adventure in the Dungeons of Doom
Copyright (C) 1995 Herb Chong
All rights reserved.
*/
#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);
}