home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume8 / graph+ / part02 / abort.c next >
Encoding:
C/C++ Source or Header  |  1987-03-01  |  850 b   |  43 lines

  1. /*
  2.  * Copyright (C) 1986   Alan Kent
  3.  *
  4.  * Permission is granted to freely distribute part or
  5.  * all of this code as long as it is not for profit
  6.  * and this message is retained in the code.
  7.  *
  8.  * No resposibility is taken for any damage or incorect
  9.  * results this program generates.
  10.  * 
  11.  */
  12.  
  13.  
  14. #include <stdio.h>
  15.  
  16. extern int linenum;
  17. extern char *infilename;
  18. extern int warnings;
  19.  
  20.  
  21.  
  22. abort ( mesg , parm )
  23. char *mesg , *parm;
  24. {
  25.     fprintf ( stderr , "%s: near line %d: " , infilename , linenum );
  26.     fprintf ( stderr , mesg , parm );
  27.     fprintf ( stderr , "\n" );
  28.     while ( yyinput () > 0 );    /* read until EOF */
  29.     exit ( 1 );
  30. }
  31.  
  32.  
  33. warn ( mesg , parm )
  34. char *mesg , *parm;
  35. {
  36.     if ( warnings ) {
  37.     fprintf ( stderr , "%s: warning near line %d: " , infilename , linenum );
  38.     fprintf ( stderr , mesg , parm );
  39.     fprintf ( stderr , "\n" );
  40.     }
  41. }
  42.  
  43.