OSDN Git Service

improve open-coding of complex divide, use new method in g77
[pf3gnuchains/gcc-fork.git] / libjava / include / default-signal.h
1 // default-signal.h - Catch runtime signals and turn them into exceptions.
2
3 /* Copyright (C) 1998, 1999  Cygnus Solutions
4
5    This file is part of libgcj.
6
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
9 details.  */
10
11 #ifndef JAVA_SIGNAL_H
12 #define JAVA_SIGNAL_H 1
13
14 #undef HANDLE_SEGV
15 #undef HANDLE_FPE
16
17 #define INIT_SEGV   do {} while (0)
18 #define INIT_FPE   do {} while (0)
19
20 #endif /* JAVA_SIGNAL_H */
21