X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=ll.c;h=e9cde23e9a0f1d71868e57e8fa9085b59595848a;hb=3da81770b841f841c5145f91a9ccedc296e13f4b;hp=d39acb316b520755f6da271e5b3668057ebf9e25;hpb=d38e1f468376f8b19b208f2da4d20cb2919875dd;p=onak.git diff --git a/ll.c b/ll.c index d39acb3..e9cde23 100644 --- a/ll.c +++ b/ll.c @@ -13,15 +13,14 @@ * more details. * * You should have received a copy of the GNU General Public License along with - * this program; if not, write to the Free Software Foundation, Inc., 51 - * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * this program. If not, see . */ +#include #include #include #include "ll.h" -#include "log.h" struct ll *lladd(struct ll *curll, void *object) { @@ -45,8 +44,6 @@ struct ll *lladdend(struct ll *curll, void *object) struct ll *cur; if ((new = malloc(sizeof(struct ll))) == NULL) { - logthing(LOGTHING_ERROR, - "Couldn't allocate memory in lladdend()"); return NULL; } @@ -72,7 +69,7 @@ struct ll *lldel(struct ll *curll, void *object, struct ll *cur = NULL; struct ll *old = NULL; - log_assert(objectcmp != NULL); + assert(objectcmp != NULL); cur = curll; if (cur == NULL) { @@ -99,7 +96,7 @@ struct ll *llfind(struct ll *curll, void *object, { struct ll *cur; - log_assert(objectcmp != NULL); + assert(objectcmp != NULL); cur = curll; while (cur != NULL && (*objectcmp)(cur->object, object)) {