X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=libiberty%2Fobjalloc.c;h=3ddac2ce4cbfbda496aa320d4578203391d7956f;hb=ebb6c20c677930f98bb34e59b10c10ff3c977659;hp=57754a8610524a59bdb56d35805cb1e4be222ce9;hpb=78fec93b659be6464e1221e33288ce3b97643ef0;p=pf3gnuchains%2Fgcc-fork.git diff --git a/libiberty/objalloc.c b/libiberty/objalloc.c index 57754a86105..3ddac2ce4cb 100644 --- a/libiberty/objalloc.c +++ b/libiberty/objalloc.c @@ -14,10 +14,12 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software -Foundation, 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ +Foundation, 51 Franklin Street - Fifth Floor, +Boston, MA 02110-1301, USA. */ +#include "config.h" #include "ansidecl.h" + #include "objalloc.h" /* Get a definition for NULL. */ @@ -28,14 +30,17 @@ Boston, MA 02111-1307, USA. */ #include #else -#ifdef ANSI_PROTOTYPES /* Get a definition for size_t. */ #include -#endif +#ifdef HAVE_STDLIB_H +#include +#else /* For systems with larger pointers than ints, this must be declared. */ -extern PTR malloc PARAMS ((size_t)); -extern void free PARAMS ((PTR)); +extern PTR malloc (size_t); +extern void free (PTR); +#endif + #endif /* These routines allocate space for an object. Freeing allocated @@ -78,7 +83,7 @@ struct objalloc_chunk /* Create an objalloc structure. */ struct objalloc * -objalloc_create () +objalloc_create (void) { struct objalloc *ret; struct objalloc_chunk *chunk; @@ -107,9 +112,7 @@ objalloc_create () /* Allocate space from an objalloc structure. */ PTR -_objalloc_alloc (o, len) - struct objalloc *o; - unsigned long len; +_objalloc_alloc (struct objalloc *o, unsigned long len) { /* We avoid confusion from zero sized objects by always allocating at least 1 byte. */ @@ -164,8 +167,7 @@ _objalloc_alloc (o, len) /* Free an entire objalloc structure. */ void -objalloc_free (o) - struct objalloc *o; +objalloc_free (struct objalloc *o) { struct objalloc_chunk *l; @@ -186,9 +188,7 @@ objalloc_free (o) recently allocated blocks. */ void -objalloc_free_block (o, block) - struct objalloc *o; - PTR block; +objalloc_free_block (struct objalloc *o, PTR block) { struct objalloc_chunk *p, *small; char *b = (char *) block;