comparison lib-src/ebrowse.c @ 39076:fe37d7c5eae2

(SEEK_END): #define if not defined by system headers. Suggested by Dave Love <d.love@dl.ac.uk>.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 01 Sep 2001 18:21:50 +0000
parents 99864bb6de1e
children 542ef74db0d2
comparison
equal deleted inserted replaced
39075:8722aa0ae475 39076:fe37d7c5eae2
31 #include <stdlib.h> 31 #include <stdlib.h>
32 #include <string.h> 32 #include <string.h>
33 #include <ctype.h> 33 #include <ctype.h>
34 #include <assert.h> 34 #include <assert.h>
35 #include "getopt.h" 35 #include "getopt.h"
36
37 /* The SunOS compiler doesn't have SEEK_END. */
38 #ifndef SEEK_END
39 #define SEEK_END 2
40 #endif
36 41
37 /* Conditionalize function prototypes. */ 42 /* Conditionalize function prototypes. */
38 43
39 #ifdef PROTOTYPES /* From config.h. */ 44 #ifdef PROTOTYPES /* From config.h. */
40 #define P_(x) x 45 #define P_(x) x