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