summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/c.h6
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;