ptr = ptr->next;
/* could not find it */
+#if 0
if (!ptr || IS_SPEC (ptr) ||
DCL_TYPE(ptr)!=UPOINTER)
return;
+#else
+ if (!ptr || IS_SPEC (ptr))
+ return;
+
+ if (IS_PTR(ptr) && DCL_TYPE(ptr)!=UPOINTER) {
+ pointerTypes (ptr->next, type);
+ return;
+ }
+#endif
/* change the pointer type depending on the
storage class of the type */
DCL_TYPE (p) == UPOINTER &&
DCL_TSPEC (p))
{
+ fprintf (stderr, "This has to go!\n");
+ exit (43);
if (!IS_SPEC (sym->etype))
{
sym->etype = sym->etype->next = newLink ();