diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-09-01 18:22:38 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-09-01 18:22:38 +0000 |
commit | 75c911eb15a2aa6519b98af74ef9cbb6d8b76783 (patch) | |
tree | fb5668c62c22352d4ca0997e9dbef767055f0d7c /lib-src/ebrowse.c | |
parent | c868201778e2d818f5e21441b7efbed6237f74d8 (diff) | |
download | emacs-75c911eb15a2aa6519b98af74ef9cbb6d8b76783.tar.gz |
(SEEK_END): #define if not defined by system headers.
Suggested by Dave Love <d.love@dl.ac.uk>.
Diffstat (limited to 'lib-src/ebrowse.c')
-rw-r--r-- | lib-src/ebrowse.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index b274a641044..38a9b65987c 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c @@ -34,6 +34,11 @@ #include <assert.h> #include "getopt.h" +/* The SunOS compiler doesn't have SEEK_END. */ +#ifndef SEEK_END +#define SEEK_END 2 +#endif + /* Conditionalize function prototypes. */ #ifdef PROTOTYPES /* From config.h. */ |