X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fany-writer.c;h=7043b65e55e7305ae2c7b27b35de7dd048224167;hb=e7d0a9f16192ceeff9243f0ede8e399ee1ef0d44;hp=5c3c0aee0f9f22fa91ef2593ae9dc7bf44f1fb34;hpb=3f2ed1c5fe6dc692ca00bb18a15e41617fa2d37d;p=pspp-builds.git diff --git a/src/data/any-writer.c b/src/data/any-writer.c index 5c3c0aee..7043b65e 100644 --- a/src/data/any-writer.c +++ b/src/data/any-writer.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include "file-handle-def.h" #include "file-name.h" @@ -85,7 +86,7 @@ any_writer_open (struct file_handle *handle, struct dictionary *dict) dict)); } - abort (); + NOT_REACHED (); } /* If PRIVATE is non-null, creates and returns a new any_writer, @@ -162,7 +163,7 @@ any_writer_write (struct any_writer *writer, const struct ccase *c) case SCRATCH_FILE: return scratch_writer_write_case (writer->private, c); } - abort (); + NOT_REACHED (); } /* Returns true if an I/O error has occurred on WRITER, false @@ -181,7 +182,7 @@ any_writer_error (const struct any_writer *writer) case SCRATCH_FILE: return scratch_writer_error (writer->private); } - abort (); + NOT_REACHED (); } /* Closes WRITER. @@ -209,7 +210,7 @@ any_writer_close (struct any_writer *writer) break; default: - abort (); + NOT_REACHED (); } free (writer);