Name cond.pred attribute consistent to getter/setters (-> cond.jmp_pred)
[libfirm] / ir / obstack_win / obstack.c
index c1ef4cb..2c82bf8 100644 (file)
@@ -20,9 +20,7 @@
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
    USA.  */
 
-#ifdef HAVE_CONFIG_H
 #include <config.h>
-#endif
 
 #include <stdlib.h>
 #include "obstack.h"
@@ -138,7 +136,7 @@ struct obstack *_obstack;
   } while (0)
 #endif
 
-\f
+
 /* Initialize an obstack H for use.  Specify chunk size SIZE (0 means default).
    Objects start on multiples of ALIGNMENT (0 means use default).
    CHUNKFUN is the function to use to allocate chunks,
@@ -361,7 +359,7 @@ _obstack_allocated_p (h, obj)
     }
   return lp != 0;
 }
-\f
+
 /* Free objects in obstack H, including OBJ and everything allocate
    more recently than OBJ.  If OBJ is zero, free everything in H.  */
 
@@ -435,7 +433,7 @@ obstack_free (h, obj)
     /* obj is not in any of the chunks! */
     abort ();
 }
-\f
+
 int
 _obstack_memory_used (h)
      struct obstack *h;
@@ -449,7 +447,7 @@ _obstack_memory_used (h)
     }
   return nbytes;
 }
-\f
+
 /* Define the error handler.  */
 #ifndef _
 # if (HAVE_LIBINTL_H && ENABLE_NLS) || defined _LIBC
@@ -468,7 +466,7 @@ print_and_abort ()
   fputs (_("memory exhausted\n"), stderr);
   exit (obstack_exit_failure);
 }
-\f
+
 #if 0
 /* These are now turned off because the applications do not use it
    and it uses bcopy via obstack_grow, which causes trouble on sysV.  */