+Mon Apr 24 14:12:25 2006 Ben Pfaff <blp@gnu.org>
+
+ * Smake: Add exit to GNULIB_MODULES.
+
Sun Apr 23 20:34:50 2006 Ben Pfaff <blp@gnu.org>
* Smake: Add linebreak to GNULIB_MODULES.
assert \
c-ctype \
c-strtod \
+ exit \
full-read \
full-write \
gethostname \
+Mon Apr 24 14:11:33 2006 Ben Pfaff <blp@gnu.org>
+
+ * message.c: Use exit.h from gnulib instead of checking for and
+ defining EXIT_SUCCESS and EXIT_FAILURE by hand.
+
Sun Apr 23 22:00:23 2006 Ben Pfaff <blp@gnu.org>
Continue reforming error message support. In this phase, get rid
+Mon Apr 24 14:12:08 2006 Ben Pfaff <blp@gnu.org>
+
+ * q2c.c: Use exit.h from gnulib instead of checking for and
+ defining EXIT_SUCCESS and EXIT_FAILURE by hand.
+
Sat Apr 15 14:30:35 2006 Ben Pfaff <blp@gnu.org>
* q2c.c: Change DEBUGGING macro to DUMP_TOKENS for clarity and to
#include <unistd.h>
#include <libpspp/compiler.h>
#include <libpspp/str.h>
-
-
-/* Brokenness. */
-#ifndef EXIT_SUCCESS
-#define EXIT_SUCCESS 0
-#endif
-
-#ifndef EXIT_FAILURE
-#define EXIT_FAILURE 1
-#endif
+#include "exit.h"
/* Max length of an input line. */
#include <data/settings.h>
#include <ui/terminal/read-line.h>
#include <libpspp/version.h>
+#include "exit.h"
#include "linebreak.h"
#include "progname.h"
getl_abort_noninteractive ();
}
-/* Some machines are broken. Compensate. */
-#ifndef EXIT_SUCCESS
-#define EXIT_SUCCESS 0
-#endif
-
-#ifndef EXIT_FAILURE
-#define EXIT_FAILURE 1
-#endif
-
static void puts_stdout (int line_indent, const char *line, size_t length);
static void dump_message (char *msg,
void (*func) (int line_indent,