OSDN Git Service

* parse.y (check_static_final_variable_assignment_flag): Fix spelling.
[pf3gnuchains/gcc-fork.git] / libchill / unhex1.c
1 /* Implement runtime actions for CHILL.
2    Copyright (C) 1992,1993 Free Software Foundation, Inc.
3    Author: Wilfried Moser
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 /* As a special exception, if you link this library with other files,
23    some of which are compiled with GCC, to produce an executable,
24    this library does not by itself cause the resulting executable
25    to be covered by the GNU General Public License.
26    This exception does not however invalidate any other reasons why
27    the executable file might be covered by the GNU General Public License.  */
28
29 #define __CHILL_LIB__
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <setjmp.h>
34
35 extern void cause_exception (char *ex, char *file, int lineno, int arg);
36 extern void unhandled_exception (char *ex, char *file, int lineno, int arg);
37
38 /*
39  * function __unhandled_ex
40  *
41  * parameter:
42  *  exname              name of exception
43  *  file                filename
44  *  lineno              line number
45  *
46  * returns:
47  *  never
48  *
49  * abstract:
50  *  This function gets called by compiler generated code when an unhandled
51  *  exception occures.
52  *  First cause_exception gets called (which may be user defined) and
53  *  then the standard unhandled exception routine gets called.
54  *
55  */
56
57 void
58 __unhandled_ex (exname, file, lineno)
59      char *exname;
60      char *file;
61      int lineno;
62 {
63     cause_exception (exname, file, lineno, 0);
64     unhandled_exception (exname, file, lineno, 0);
65 } /* unhandled_exception */