(SEEK_END): #define if not defined by system headers.
Suggested by Dave Love <d.love@dl.ac.uk>.
This commit is contained in:
parent
c868201778
commit
75c911eb15
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-09-01 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* ebrowse.c (SEEK_END): #define if not defined by system headers.
|
||||
Suggested by Dave Love <d.love@dl.ac.uk>.
|
||||
|
||||
2001-08-29 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* makefile.nt (lisp): Synchronize with src/Makefile.in.
|
||||
|
|
|
@ -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. */
|
||||
|
|
Loading…
Add table
Reference in a new issue