From 8bbffb139271fe135e02959a68c4e61ab7de3a94 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Wed, 8 Mar 2000 18:49:46 +0000 Subject: [PATCH] Use POINTER_TYPE. --- src/mem-limits.h | 6 +----- 1 file changed, 1 insertion(+), 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; -- 2.11.4.GIT