$NetBSD: patch-aa,v 1.1 2010/02/14 06:28:07 dholland Exp $

Patch out illegal C constructs.

--- ../gcc-3.1/include/obstack.h.orig	2001-03-14 19:44:38.000000000 +0000
+++ ../gcc-3.1/include/obstack.h
@@ -423,7 +423,7 @@ __extension__								\
 ({ struct obstack *__o = (OBSTACK);					\
    if (__o->next_free + sizeof (void *) > __o->chunk_limit)		\
      _obstack_newchunk (__o, sizeof (void *));				\
-   *((void **)__o->next_free)++ = ((void *)datum);			\
+   ((void **)(__o->next_free+=sizeof(void *)))[-1] = ((void *)datum);	\
    (void) 0; })
 
 # define obstack_int_grow(OBSTACK,datum)				\
