From 312ef693bf2e5b1bb90ce7465e8957110d61419a Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Wed, 19 Aug 2026 12:37:58 +0100 Subject: [PATCH] Removed C90 limitations and NO_LONG_LONG related stuff as even MinGW on Windows 2000 works --- Makefile.unix | 2 +- Makefile.w32 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.unix b/Makefile.unix index 647a61b..03b1191 100644 --- a/Makefile.unix +++ b/Makefile.unix @@ -5,7 +5,7 @@ SRCDIR ?= $(CURDIR) VPATH := $(SRCDIR) CC := gcc -CFLAGS := -D_FILE_OFFSET_BITS=64 -Wall -Werror -Wextra -std=c90 +CFLAGS := -D_FILE_OFFSET_BITS=64 -Wall -Werror -Wextra CSRC := lib.c parted.c report.c write7x.c diff --git a/Makefile.w32 b/Makefile.w32 index f318641..27d52e8 100644 --- a/Makefile.w32 +++ b/Makefile.w32 @@ -5,7 +5,7 @@ SRCDIR ?= $(CURDIR) VPATH := $(SRCDIR) CC := gcc -CFLAGS := -D_FILE_OFFSET_BITS=64 -Wall -Werror -Wextra -std=c90 +CFLAGS := -D_FILE_OFFSET_BITS=64 -Wall -Werror -Wextra CSRC := lib.c parted.c report.c write7x.c -- 2.34.1