assert (c != NULL);
assert (cf->mode == WRITE);
+ assert ( cf->value_cnt <= c->case_data->value_cnt );
+
/* Try memory first. */
if (cf->storage == MEMORY)
{
struct msg_locator;
void get_msg_location (struct msg_locator *loc);
+void getl_location (const char **fn, int *ln);
+
#endif /* line-buffer.h */
+Mon Jul 10 17:26:58 WST 2006 John Darrington <john@darrington.wattle.id.au>
+
+ * llx.c: #included compiler.h and removed explicit preprocessor cruft.
+
Fri Jul 7 20:01:26 2006 Ben Pfaff <blp@gnu.org>
* automake.mk: (src_libpspp_libpspp_a_SOURCES) Add assertion.h.
#endif
#include <libpspp/llx.h>
+#include "compiler.h"
#include <assert.h>
#include <stdlib.h>
-#if __GNUC__ >= 2 && !defined UNUSED
-#define UNUSED __attribute__ ((unused))
-#else
-#define UNUSED
-#endif
-
/* Destroys LIST and frees all of its nodes using MANAGER.
If DESTRUCTOR is non-null, each node in the list will be
passed to it in list order, with AUX as auxiliary data, before