]> gcc.gnu.org Git - gcc.git/blobdiff - libcpp/identifiers.c
RTEMS: Use MULTILIB_REQUIRED for PowerPC
[gcc.git] / libcpp / identifiers.c
index 8fba8c004ecc2155f7d3116264aabb3d2a79b65b..d603f06f2cbabde1e29edf9151e15dbcbfc829a3 100644 (file)
@@ -1,5 +1,5 @@
 /* Hash tables for the CPP library.
-   Copyright (C) 1986-2014 Free Software Foundation, Inc.
+   Copyright (C) 1986-2015 Free Software Foundation, Inc.
    Written by Per Bothner, 1994.
    Based on CCCP program by Paul Rubin, June 1986
    Adapted to ANSI C, Richard Stallman, Jan 1987
@@ -54,9 +54,7 @@ _cpp_init_hashtable (cpp_reader *pfile, cpp_hash_table *table)
       table = ht_create (13);  /* 8K (=2^13) entries.  */
       table->alloc_node = alloc_node;
 
-      _obstack_begin (&pfile->hash_ob, 0, 0,
-                     (void *(*) (long)) xmalloc,
-                     (void (*) (void *)) free);
+      obstack_specify_allocation (&pfile->hash_ob, 0, 0, xmalloc, free);
     }
 
   table->pfile = pfile;
This page took 0.031019 seconds and 5 git commands to generate.