On Tuesday 2012-08-14 17:52, Joachim Schmitz wrote:
quoted hunk ↗ jump to hunk
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
+#ifdef __TANDEM
+# include <strings.h> /* for strcasecmp() */
+ typedef int intptr_t; /* not "int *" ?!? */
+ typedef unsigned int uintptr_t; /* not "unsigned int *" ?!? */
Of course not. intptr_t is an integral value capable of holding
a pointer; it is not a pointer to int (because that would really
be redundant to int*.)