summaryrefslogtreecommitdiff
path: root/src/puresize.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-09-17 00:41:40 +0000
committerRichard M. Stallman <rms@gnu.org>1994-09-17 00:41:40 +0000
commit5647f9794b2e4770399556c7d4a4c6fc45dfb3f5 (patch)
tree8514e540fd3bbe006711a46eba24ed471a68a617 /src/puresize.h
parent1687325e19705137657af1e0170299708251cc21 (diff)
downloademacs-5647f9794b2e4770399556c7d4a4c6fc45dfb3f5.tar.gz
(CHECK_IMPURE, all versions): Use EMACS_INT.
Diffstat (limited to 'src/puresize.h')
-rw-r--r--src/puresize.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/puresize.h b/src/puresize.h
index 0391bc380b8..3aa6e75c2dc 100644
--- a/src/puresize.h
+++ b/src/puresize.h
@@ -40,7 +40,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* For machines like APOLLO where text and data can go anywhere
in virtual memory. */
#define CHECK_IMPURE(obj) \
- { extern int pure[]; \
+ { extern EMACS_INT pure[]; \
if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE) \
&& (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure) \
pure_write_error (); }
@@ -50,14 +50,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* when PNTR_COMPARISON_TYPE is not the default (unsigned int) */
#define CHECK_IMPURE(obj) \
- { extern int my_edata; \
+ { extern EMACS_INT my_edata; \
if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) &my_edata) \
pure_write_error (); }
#else /* not VIRT_ADDRESS_VARIES, not PNTR_COMPARISON_TYPE */
#define CHECK_IMPURE(obj) \
- { extern int my_edata; \
+ { extern EMACS_INT my_edata; \
if (XPNTR (obj) < (unsigned int) &my_edata) \
pure_write_error (); }