diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-04-12 19:40:10 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-04-12 19:40:10 +0000 |
commit | 6d0da1a350f67684ea669156c7823f3955f149fb (patch) | |
tree | 482b11e00af9be317fa34fac86e5846a31960dc3 /src | |
parent | 74e32821dc7c0cb9dcc777e2749e7c69690a4b89 (diff) | |
download | emacs-6d0da1a350f67684ea669156c7823f3955f149fb.tar.gz |
Set up PURE_P() for Cygwin unexec() support.
Diffstat (limited to 'src')
-rw-r--r-- | src/puresize.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/puresize.h b/src/puresize.h index 6ca10b22fdf..8088a374765 100644 --- a/src/puresize.h +++ b/src/puresize.h @@ -68,7 +68,7 @@ extern void pure_write_error P_ ((void)); /* Define PURE_P. */ -#ifdef VIRT_ADDR_VARIES +#if defined(VIRT_ADDR_VARIES) || defined(CYGWIN) /* For machines like APOLLO where text and data can go anywhere in virtual memory. */ |