From 24728efc40952a80a245f22a5b2ef06c57bd0377 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 21 Jan 2026 20:41:52 +0200 Subject: [PATCH] fix: remove bad define directive in nilinkedlist.h --- nilinkedlist.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/nilinkedlist.h b/nilinkedlist.h index 1e460a4..092d498 100644 --- a/nilinkedlist.h +++ b/nilinkedlist.h @@ -1,7 +1,5 @@ #include "../ni-arena/niarena.h" -#define NILINKEDLIST_IMPLEMENTATION - typedef struct _NILinkedListNode { void *content; struct _NILinkedListNode *next;