diff options
| -rw-r--r-- | src/include/c.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/include/c.h b/src/include/c.h index a40f0cf4642..ccd2b654d45 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -527,11 +527,9 @@ typedef void (*pg_funcptr_t) (void); /* * Pointer * Variable holding address of any memory resident object. - * - * XXX Pointer arithmetic is done with this, so it can't be void * - * under "true" ANSI compilers. + * (obsolescent; use void * or char *) */ -typedef char *Pointer; +typedef void *Pointer; /* Historical names for types in <stdint.h>. */ typedef int8_t int8; |
