]> www.ginac.de Git - cln.git/blob - src/float/base/cl_F_err_ov.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / float / base / cl_F_err_ov.cc
1 // cl_error_floating_point_overflow().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_F.h"
8
9
10 // Implementation.
11
12 #include "cln/io.h"
13 #include "cln/abort.h"
14
15 namespace cln {
16
17 void cl_error_floating_point_overflow (void)
18 {
19         fprint(stderr, "Floating point overflow.\n");
20         cl_abort();
21 }
22
23 }  // namespace cln