Mercurial > hg > early-roguelike
view urogue/verify.c @ 312:029c1f5c5588
Update the Autoconf files.
These are mostly automatic updates for obsolete macros.
author | John "Elwin" Edwards |
---|---|
date | Tue, 11 May 2021 22:30:03 -0400 |
parents | 13b482bd9e66 |
children |
line wrap: on
line source
/* 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); }