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

Annotation of early-roguelike/urogue/verify.c, Revision 1.1.1.1

1.1       rubenllo    1: /*
                      2:     verify.c - exiting functions
                      3:
                      4:     UltraRogue: The Ultimate Adventure in the Dungeons of Doom
                      5:     Copyright (C) 1995 Herb Chong
                      6:     All rights reserved.
                      7: */
                      8:
                      9: static char sccsid[] = "%W% %G%";
                     10:
                     11: #include "rogue.h"
                     12:
                     13: void verify_function(const char *file, const int line)
                     14: {
                     15:        char s[80];
                     16:
                     17:        sprintf(s, "Verify failure in %s at line %d\n", file, line);
                     18:        fatal(s);
                     19: }

CVSweb