diff options
| author | Dave Love <fx@gnu.org> | 2000-03-08 18:49:46 +0000 | 
|---|---|---|
| committer | Dave Love <fx@gnu.org> | 2000-03-08 18:49:46 +0000 | 
| commit | 8bbffb139271fe135e02959a68c4e61ab7de3a94 (patch) | |
| tree | 83f920588401c09478ff748fa6cb03fcf8cf5aa4 | |
| parent | 9043c90a5e62959695644faee52ef9e5328a8f04 (diff) | |
| download | emacs-8bbffb139271fe135e02959a68c4e61ab7de3a94.tar.gz | |
Use POINTER_TYPE.
| -rw-r--r-- | src/mem-limits.h | 6 | 
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)  /* The important properties of this type are that 1) it's a pointer, and     2) arithmetic on it should work as if the size of the object pointed     to has a size of 1.  */ -#ifdef __STDC__ -typedef void *POINTER; -#else -typedef char *POINTER; -#endif +typedef POINTER_TYPE *POINTER;  typedef unsigned long SIZE;  | 
