From 031a7c6892bde7035f7a54a913d146728cf58f3f Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sun, 3 Dec 2023 18:38:36 +0400 Subject: [PATCH] Remove ctype.h include. --- day3/p2.c | 1 - 1 file changed, 1 deletion(-) diff --git a/day3/p2.c b/day3/p2.c index be9cf63..1018870 100644 --- a/day3/p2.c +++ b/day3/p2.c @@ -4,7 +4,6 @@ #include #include #include -#include #define ISDIGIT(c) (c >= 0x30 && c <= 0x39)