From b26d0dd58371f19fec44e9c5d8a64697ee06d8b5 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 25 Feb 2023 17:13:00 -0800 Subject: [PATCH] Omit no-longer-needed SEEK_END workaround * lib-src/ebrowse.c (SEEK_END): Remove; no longer needed on any supported SunOS version. --- lib-src/ebrowse.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index 469e90d04bb..371fa6c938b 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c @@ -31,11 +31,6 @@ along with GNU Emacs. If not, see . */ #include #include -/* The SunOS compiler doesn't have SEEK_END. */ -#ifndef SEEK_END -#define SEEK_END 2 -#endif - /* Files are read in chunks of this number of bytes. */ enum { READ_CHUNK_SIZE = 100 * 1024 }; -- 2.39.5