# HG changeset patch # User Mike Becker # Date 1760985482 -7200 # Node ID 48ebf22b698e895f027814988a14ca9408851730 # Parent 27d71ce751e9a482897a5098bb35d55b9260692e fix accidental additions of unnecessary unistd.h includes diff -r 27d71ce751e9 -r 48ebf22b698e src/linked_list.c --- a/src/linked_list.c Mon Oct 20 20:37:45 2025 +0200 +++ b/src/linked_list.c Mon Oct 20 20:38:02 2025 +0200 @@ -30,7 +30,6 @@ #include "cx/compare.h" #include #include -#include // LOW LEVEL LINKED LIST FUNCTIONS diff -r 27d71ce751e9 -r 48ebf22b698e tests/test_list.c --- a/tests/test_list.c Mon Oct 20 20:37:45 2025 +0200 +++ b/tests/test_list.c Mon Oct 20 20:38:02 2025 +0200 @@ -36,7 +36,6 @@ #include #include -#include CX_TEST(test_array_add) { CX_ARRAY_DECLARE(int, arr);