diff options
author | obrien <obrien@FreeBSD.org> | 1999-10-16 06:09:09 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-10-16 06:09:09 +0000 |
commit | cae8fa8120c70195f34a2456f18c4c848a2d3e0c (patch) | |
tree | f7d3a3ab9c32694206552e767626366f016f2062 /contrib/gcc/f/malloc.h | |
parent | 84656b55b6e25e30322dc903a05de53706361d3d (diff) | |
download | FreeBSD-src-cae8fa8120c70195f34a2456f18c4c848a2d3e0c.zip FreeBSD-src-cae8fa8120c70195f34a2456f18c4c848a2d3e0c.tar.gz |
Virgin import of the GCC 2.95.1 compilers
Diffstat (limited to 'contrib/gcc/f/malloc.h')
-rw-r--r-- | contrib/gcc/f/malloc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/gcc/f/malloc.h b/contrib/gcc/f/malloc.h index ea43276..d9efdf2 100644 --- a/contrib/gcc/f/malloc.h +++ b/contrib/gcc/f/malloc.h @@ -1,6 +1,6 @@ /* malloc.h -- Public #include File (module.h template V1.0) Copyright (C) 1995 Free Software Foundation, Inc. - Contributed by James Craig Burley (burley@gnu.org). + Contributed by James Craig Burley. This file is part of GNU Fortran. @@ -109,14 +109,14 @@ void malloc_init (void); void malloc_kill_inpool_ (mallocPool pool, mallocType_ type, void *ptr, mallocSize size); void *malloc_new_ (mallocSize size); -void *malloc_new_inpool_ (mallocPool pool, mallocType_ type, char *name, +void *malloc_new_inpool_ (mallocPool pool, mallocType_ type, const char *name, mallocSize size); -void *malloc_new_zinpool_ (mallocPool pool, mallocType_ type, char *name, +void *malloc_new_zinpool_ (mallocPool pool, mallocType_ type, const char *name, mallocSize size, int z); void malloc_pool_display (mallocPool p); char malloc_pool_find_ (mallocPool p, mallocPool parent); void malloc_pool_kill (mallocPool p); -mallocPool malloc_pool_new (char *name, mallocPool parent, unsigned long chunks); +mallocPool malloc_pool_new (const char *name, mallocPool parent, unsigned long chunks); mallocPool malloc_pool_use (mallocPool p); void *malloc_resize_ (void *ptr, mallocSize new_size); void *malloc_resize_inpool_ (mallocPool pool, mallocType_ type, void *ptr, |