X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=ccl%2Fccltoken.c;h=14b217dca74ab171fcef25a1cd52f87225a5ee93;hb=bd6ab82d45c0079d404ec0c325c5f4c8a9ca86e6;hp=cfdc8d1960256c33b41b7fa36dc7dc54b79e9e9d;hpb=330271187bc05322c13e6e22483120ca8e5a20a1;p=yaz-moved-to-github.git diff --git a/ccl/ccltoken.c b/ccl/ccltoken.c index cfdc8d1..14b217d 100644 --- a/ccl/ccltoken.c +++ b/ccl/ccltoken.c @@ -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;