You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
323 B
23 lines
323 B
// read_number_eof().
|
|
|
|
// General includes.
|
|
#include "cl_sysdep.h"
|
|
|
|
// Specification.
|
|
#include "cln/number_io.h"
|
|
|
|
|
|
// Implementation.
|
|
|
|
#include "cln/io.h"
|
|
#include "cln/abort.h"
|
|
|
|
namespace cln {
|
|
|
|
void read_number_eof (void)
|
|
{
|
|
fprint(stderr, "read_number: end of stream encountered\n");
|
|
cl_abort();
|
|
}
|
|
|
|
} // namespace cln
|