aboutsummaryrefslogtreecommitdiff
path: root/gcc/alloc-pool.h
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2003-06-15 15:43:32 +0200
committerAndreas Jaeger <aj@gcc.gnu.org>2003-06-15 15:43:32 +0200
commit4682ae0463c9fcc254fe1c8ede9da9133a9956bc (patch)
tree011c105664290fc65aee6e952c836e52aa84f722 /gcc/alloc-pool.h
parentcbdb4ba2dcf013c9ee4b1f28182596ab9ae135c5 (diff)
downloadgcc-4682ae0463c9fcc254fe1c8ede9da9133a9956bc.zip
gcc-4682ae0463c9fcc254fe1c8ede9da9133a9956bc.tar.gz
gcc-4682ae0463c9fcc254fe1c8ede9da9133a9956bc.tar.bz2
alloc-pool.c: Convert to ISO C90 prototypes.
* alloc-pool.c: Convert to ISO C90 prototypes. * alloc-pool.h: Likewise. * alias.c: Likewise. * attribs.c: Likewise. * bb-reorder.c: Likewise. * bitmap.h: Likewise. * bitmap.c: Likewise. * builtins.c: Likewise. * tree.h: Convert prototypes of attribs.c to ISO C90. * basic-block.h: Convert prototypes of bb-reorder.c to ISO C90. * rtl.h: Convert prototypes of alias.c and builtins.c to ISO C90. * expr.h: Convert prototypes of builtins.c to ISO C90. From-SVN: r67975
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 0310caf..48d0172 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