mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-24 03:14:08 +08:00
splay-tree.c: Tweak include directives to make sure declarations of xmalloc and free are...
* splay-tree.c: Tweak include directives to make sure declarations of xmalloc and free are available. From-SVN: r23358
This commit is contained in:
parent
4f4b36794c
commit
ad3ef78e25
@ -1,3 +1,8 @@
|
||||
1998-10-26 Mark Mitchell <mark@markmitchell.com>
|
||||
|
||||
* splay-tree.c: Tweak include directives to make sure declarations of
|
||||
xmalloc and free are available.
|
||||
|
||||
1998-10-25 Mark Mitchell <mark@markmitchell.com>
|
||||
|
||||
* cplus-dem.c (gnu_special): Fix handling of virtual tables in
|
||||
|
@ -23,8 +23,18 @@
|
||||
Lewis, Harry R. and Denenberg, Larry. Data Structures and Their
|
||||
Algorithms. Harper-Collins, Inc. 1991. */
|
||||
|
||||
#if defined (IN_GCC) || defined (HAVE_CONFIG_H)
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STDLIB_H
|
||||
#include <stdlib.h>
|
||||
#endif
|
||||
|
||||
#ifndef IN_GCC
|
||||
#include "libiberty.h"
|
||||
#else /* IN_GCC */
|
||||
extern char* xmalloc ();
|
||||
#endif /* IN_GCC */
|
||||
#include "splay-tree.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user