]> www.ginac.de Git - cln.git/blob - src/base/cl_abort.cc
* src/numtheory/cl_nt_sqrtmodp.cc: #undef _R.
[cln.git] / src / base / cl_abort.cc
1 // cl_abort().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/abort.h"
8
9
10 // Implementation.
11
12 #include <stdlib.h>
13
14 namespace cln {
15
16 void cl_abort (void)
17 {
18         exit(1);
19 }
20
21 }  // namespace cln