From 985ee1776348b2068fb6470e2a2fd3442c2a0811 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 26 Feb 2019 10:56:49 +0100 Subject: Start update of types. --- linked_list.inc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'linked_list.inc.h') diff --git a/linked_list.inc.h b/linked_list.inc.h index 8ae720ba..499d4509 100644 --- a/linked_list.inc.h +++ b/linked_list.inc.h @@ -139,6 +139,7 @@ int EMPTY(LLIST(TYPE)) ( LLIST(TYPE)* llist ) { LLIST(TYPE)* RESOLVE(LLIST(TYPE)) (LLIST(TYPE)* dest, LLIST(TYPE)* new__) { if (dest == NULL) return new__; APPEND(LLIST(TYPE))(dest, new__); + // TODO free new__? return dest; } -- cgit v1.2.3