diff options
| author | Dave Love | 2000-02-08 10:00:51 +0000 |
|---|---|---|
| committer | Dave Love | 2000-02-08 10:00:51 +0000 |
| commit | 69da54ba20cdf44d2618acfa7ae7234ed21ace97 (patch) | |
| tree | 268e4b1e22c90ceb2f3aab37486af2c709d56a0e /src | |
| parent | f7136ee81af9831aa4fc7a9ee2e059033ad688f5 (diff) | |
| download | emacs-69da54ba20cdf44d2618acfa7ae7234ed21ace97.tar.gz emacs-69da54ba20cdf44d2618acfa7ae7234ed21ace97.zip | |
(__EXTENSIONS__): Define.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/lread.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a40d5456eed..a0b2b26e369 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2000-02-08 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * lread.c (__EXTENSIONS__): Define. | ||
| 4 | |||
| 1 | 2000-02-08 Gerd Moellmann <gerd@gnu.org> | 5 | 2000-02-08 Gerd Moellmann <gerd@gnu.org> |
| 2 | 6 | ||
| 3 | * puresize.h (BASE_PURESIZE): Increase to 650000. | 7 | * puresize.h (BASE_PURESIZE): Increase to 650000. |
diff --git a/src/lread.c b/src/lread.c index 4f384c809a8..efc2b3149b2 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -22,6 +22,8 @@ Boston, MA 02111-1307, USA. */ | |||
| 22 | 22 | ||
| 23 | #include <config.h> | 23 | #include <config.h> |
| 24 | #define _XOPEN_SOURCE 500 /* for Unix 98 ftello on GNU */ | 24 | #define _XOPEN_SOURCE 500 /* for Unix 98 ftello on GNU */ |
| 25 | #define __EXTENSIONS__ /* Keep Solaris 2.6 happy with the | ||
| 26 | above, else things we need are hidden. */ | ||
| 25 | #include <stdio.h> | 27 | #include <stdio.h> |
| 26 | #include <sys/types.h> | 28 | #include <sys/types.h> |
| 27 | #include <sys/stat.h> | 29 | #include <sys/stat.h> |