aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/ebrowse.c
diff options
context:
space:
mode:
authorPaul Eggert2023-02-25 17:13:00 -0800
committerPaul Eggert2023-02-25 17:13:29 -0800
commitb26d0dd58371f19fec44e9c5d8a64697ee06d8b5 (patch)
treef9d83d9c94705db1b8e1469bd2bad5f8388c3cc6 /lib-src/ebrowse.c
parent6a3a729705f74f630d0a98344531f39d051b543e (diff)
downloademacs-b26d0dd58371f19fec44e9c5d8a64697ee06d8b5.tar.gz
emacs-b26d0dd58371f19fec44e9c5d8a64697ee06d8b5.zip
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/ebrowse.c')
-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/>. */
31#include <min-max.h> 31#include <min-max.h>
32#include <unlocked-io.h> 32#include <unlocked-io.h>
33 33
34/* The SunOS compiler doesn't have SEEK_END. */
35#ifndef SEEK_END
36#define SEEK_END 2
37#endif
38
39/* Files are read in chunks of this number of bytes. */ 34/* Files are read in chunks of this number of bytes. */
40 35
41enum { READ_CHUNK_SIZE = 100 * 1024 }; 36enum { READ_CHUNK_SIZE = 100 * 1024 };