Commit df231a09 by Michael Meissner Committed by Michael Meissner

Declare malloc, free, and atexit if inhibit_libc is defined.

From-SVN: r29829
parent dbf08f94
Tue Oct 5 15:37:04 1999 Michael Meissner <meissner@cygnus.com>
* libgcc2.c (toplevel): If inhibit_libc is defined, declare
malloc, free, and atexit. Don't include stddef.h twice.
* frame.c (toplevel): If inhibit_libc is defined, declare
malloc and free.
Tue Oct 5 12:00:32 1999 Richard Henderson <rth@cygnus.com> Tue Oct 5 12:00:32 1999 Richard Henderson <rth@cygnus.com>
* flow.c (make_edge): Accept an optional 2D bitmap in which * flow.c (make_edge): Accept an optional 2D bitmap in which
......
/* Subroutines needed for unwinding stack frames for exception handling. */ /* Subroutines needed for unwinding stack frames for exception handling. */
/* Compile this one with gcc. */ /* Compile this one with gcc. */
/* Copyright (C) 1997, 1998 Free Software Foundation, Inc. /* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
Contributed by Jason Merrill <jason@cygnus.com>. Contributed by Jason Merrill <jason@cygnus.com>.
This file is part of GNU CC. This file is part of GNU CC.
...@@ -41,6 +41,15 @@ Boston, MA 02111-1307, USA. */ ...@@ -41,6 +41,15 @@ Boston, MA 02111-1307, USA. */
/* fixproto guarantees these system headers exist. */ /* fixproto guarantees these system headers exist. */
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#else
#include <stddef.h>
#ifndef malloc
extern void *malloc (size_t);
#endif
#ifndef free
extern void free (void *);
#endif
#endif #endif
#include "defaults.h" #include "defaults.h"
......
...@@ -40,11 +40,23 @@ Boston, MA 02111-1307, USA. */ ...@@ -40,11 +40,23 @@ Boston, MA 02111-1307, USA. */
/* fixproto guarantees these system headers exist. */ /* fixproto guarantees these system headers exist. */
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#else
#include <stddef.h>
#ifndef malloc
extern void *malloc (size_t);
#endif
#ifndef free
extern void free (void *);
#endif
#ifndef atexit
extern int atexit(void (*)(void));
#endif
#endif #endif
#include "machmode.h" #include "machmode.h"
#include "defaults.h" #include "defaults.h"
#ifndef L_trampoline #if !defined(L_trampoline) && !defined(inhibit_libc)
#include <stddef.h> #include <stddef.h>
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment