]> www.ginac.de Git - cln.git/blob - src/integer/division/cl_I_exquoerr.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / integer / division / cl_I_exquoerr.cc
1 // cl_error_exquo().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_I.h"
8
9
10 // Implementation.
11
12 #include "cln/io.h"
13 #include "cln/integer_io.h"
14 #include "cln/abort.h"
15
16 namespace cln {
17
18 void cl_error_exquo (const cl_I& x, const cl_I& y)
19 {
20         fprint(stderr, "Quotient ");
21         fprint(stderr, x);
22         fprint(stderr, " / ");
23         fprint(stderr, y);
24         fprint(stderr, " is not an integer.\n");
25         cl_abort();
26 }
27
28 }  // namespace cln