summaryrefslogtreecommitdiff
path: root/gcc/alloc-pool.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/alloc-pool.h')
-rw-r--r--gcc/alloc-pool.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/alloc-pool.h b/gcc/alloc-pool.h
index 0310caf0156..48d017217a9 100644
--- a/gcc/alloc-pool.h
+++ b/gcc/alloc-pool.h
@@ -47,8 +47,8 @@ typedef struct alloc_pool_def
}
*alloc_pool;
-extern alloc_pool create_alloc_pool PARAMS ((const char *, size_t, size_t));
-extern void free_alloc_pool PARAMS ((alloc_pool));
-extern void *pool_alloc PARAMS ((alloc_pool));
-extern void pool_free PARAMS ((alloc_pool, void *));
+extern alloc_pool create_alloc_pool (const char *, size_t, size_t);
+extern void free_alloc_pool (alloc_pool);
+extern void *pool_alloc (alloc_pool);
+extern void pool_free (alloc_pool, void *);
#endif