a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/keys.c src/lib/keys.c index 2872775..a9e14a1 100644 --- src/lib/keys.c +++ src/lib/keys.c @@ -1,26 +1,25 @@ /* keys.c - Stuff to manage a little key/value pair table and * evaluate expressions on it. * * This file is copyright 2002 Jim Kent, but license is hereby * granted for all use - public, private or commercial. */ #include "common.h" #include "keys.h" #include "kxTok.h" -static char const rcsid[] = "$Id: keys.c,v 1.10 2005/04/10 14:41:23 markd Exp $"; struct kvt /* Key/value table. */ { int used; /* Number of keys used in table. */ int alloced; /* Number allocated in table. */ struct keyVal *table; /* The table itself. */ }; struct kvt *newKvt(int size) /* Get a new key value table. */ { struct kvt *kvt; AllocVar(kvt); kvt->alloced = size;