aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2000-03-08 18:49:46 +0000
committerDave Love2000-03-08 18:49:46 +0000
commit8bbffb139271fe135e02959a68c4e61ab7de3a94 (patch)
tree83f920588401c09478ff748fa6cb03fcf8cf5aa4 /src
parent9043c90a5e62959695644faee52ef9e5328a8f04 (diff)
downloademacs-8bbffb139271fe135e02959a68c4e61ab7de3a94.tar.gz
emacs-8bbffb139271fe135e02959a68c4e61ab7de3a94.zip
Use POINTER_TYPE.
Diffstat (limited to 'src')
-rw-r--r--src/mem-limits.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/mem-limits.h b/src/mem-limits.h
index 1fc6c1331db..dae4cf7fd45 100644
--- a/src/mem-limits.h
+++ b/src/mem-limits.h
@@ -62,11 +62,7 @@ extern int etext, __data_start; weak_extern (__data_start)
62/* The important properties of this type are that 1) it's a pointer, and 62/* The important properties of this type are that 1) it's a pointer, and
63 2) arithmetic on it should work as if the size of the object pointed 63 2) arithmetic on it should work as if the size of the object pointed
64 to has a size of 1. */ 64 to has a size of 1. */
65#ifdef __STDC__ 65typedef POINTER_TYPE *POINTER;
66typedef void *POINTER;
67#else
68typedef char *POINTER;
69#endif
70 66
71typedef unsigned long SIZE; 67typedef unsigned long SIZE;
72 68