a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/shaRes.c src/lib/shaRes.c index 5cabfae..740d472 100644 --- src/lib/shaRes.c +++ src/lib/shaRes.c @@ -1,24 +1,23 @@ /* ShaRes.c - implementation of shared resources * * This file is copyright 2002 Jim Kent, but license is hereby * granted for all use - public, private or commercial. */ #include "common.h" #include "shaRes.h" -static char const rcsid[] = "$Id: shaRes.c,v 1.4 2003/05/06 07:33:44 kate Exp $"; static void shaFreeNode(struct shaResNode *node) /* Free a node. (Don't look at link count, just do it.) */ { struct shaResNode *next = node->next; struct shaResNode *prev = node->prev; struct shaResList *list = node->list; if (next != NULL) next->prev = prev; if (prev != NULL) prev->next = next; else list->head = next; list->freeData(node->data);