From: Paul Eggert Date: Sun, 26 Feb 2023 01:13:00 +0000 (-0800) Subject: Omit no-longer-needed SEEK_END workaround X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b26d0dd58371f19fec44e9c5d8a64697ee06d8b5;p=emacs.git Omit no-longer-needed SEEK_END workaround * lib-src/ebrowse.c (SEEK_END): Remove; no longer needed on any supported SunOS version. --- 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 };