]> git.eshelyaron.com Git - emacs.git/commitdiff
Omit no-longer-needed SEEK_END workaround
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 26 Feb 2023 01:13:00 +0000 (17:13 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 26 Feb 2023 01:13:29 +0000 (17:13 -0800)
* lib-src/ebrowse.c (SEEK_END): Remove; no longer needed
on any supported SunOS version.

lib-src/ebrowse.c

index 469e90d04bb61ce470d20ad0051fcaecb79f9d1b..371fa6c938bd05817d4efc11bc47979d2d3850a6 100644 (file)
@@ -31,11 +31,6 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 #include <min-max.h>
 #include <unlocked-io.h>
 
-/* 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 };