diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-15 13:43:32 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-15 13:43:32 +0000 |
commit | aecda0d63740bf543c769e6fed70a34cc7f052e3 (patch) | |
tree | 011c105664290fc65aee6e952c836e52aa84f722 /gcc/alloc-pool.h | |
parent | e2ee731bf11cf905827479625d69351f71201055 (diff) | |
download | gcc-aecda0d63740bf543c769e6fed70a34cc7f052e3.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67975 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/alloc-pool.h')
-rw-r--r-- | gcc/alloc-pool.h | 8 |
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 |