summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2023-02-25 17:13:00 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2023-02-25 17:13:29 -0800
commitb26d0dd58371f19fec44e9c5d8a64697ee06d8b5 (patch)
treef9d83d9c94705db1b8e1469bd2bad5f8388c3cc6 /lib-src
parent6a3a729705f74f630d0a98344531f39d051b543e (diff)
downloademacs-b26d0dd58371f19fec44e9c5d8a64697ee06d8b5.tar.gz
Omit no-longer-needed SEEK_END workaround
* lib-src/ebrowse.c (SEEK_END): Remove; no longer needed on any supported SunOS version.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ebrowse.c5
1 files changed, 0 insertions, 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 <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 };