Minor adjustments
[yaz-moved-to-github.git] / ccl / ccltoken.c
index cfdc8d1..14b217d 100644 (file)
@@ -2,7 +2,16 @@
  * Europagate, 1995
  *
  * $Log: ccltoken.c,v $
- * Revision 1.1  1995-04-10 10:28:22  quinn
+ * Revision 1.4  1995-11-01 13:54:22  quinn
+ * Minor adjustments
+ *
+ * Revision 1.3  1995/09/29  17:12:00  quinn
+ * Smallish
+ *
+ * Revision 1.2  1995/09/27  15:02:44  quinn
+ * Modified function heads & prototypes.
+ *
+ * Revision 1.1  1995/04/10  10:28:22  quinn
  * Added copy of CCL.
  *
  * Revision 1.5  1995/02/23  08:32:00  adam
@@ -59,13 +68,13 @@ struct ccl_token *ccl_tokenize (const char *command)
        }
        if (!first)
        {
-           first = last = malloc (sizeof (*first));
+           first = last = xmalloc (sizeof (*first));
            assert (first);
            last->prev = NULL;
        }
        else
        {
-           last->next = malloc (sizeof(*first));
+           last->next = xmalloc (sizeof(*first));
            assert (last->next);
            last->next->prev = last;
            last = last->next;