From 63e24355adca40fd367f9f3d280a7b7d8839135a Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Sat, 26 Oct 2024 13:22:03 +0100 Subject: [PATCH] Don't compare file contents --- elks.c | 2 -- ld.c | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/elks.c b/elks.c index 2e1a244..8dfc9f8 100644 --- a/elks.c +++ b/elks.c @@ -14,8 +14,6 @@ #include "report.h" #include "write7x.h" -#include - typedef signed char int8_t; typedef signed short int16_t; diff --git a/ld.c b/ld.c index 5fc9b81..51d93c0 100644 --- a/ld.c +++ b/ld.c @@ -94,7 +94,7 @@ static int process_elks (void *obj, unsigned long sz, const char *fname, int qui } - for (i = 0; i < state->nb_elks_objs; ++i) { + /*for (i = 0; i < state->nb_elks_objs; ++i) { struct elks_object *obj_to_compare = state->elks_objs[i]; @@ -106,7 +106,7 @@ static int process_elks (void *obj, unsigned long sz, const char *fname, int qui return 0; } - } + }*/ if (state->impure) { -- 2.34.1