* solib.h: Protect against multiple inclusion.

This commit is contained in:
Jason Thorpe 2002-05-07 08:35:54 +00:00
parent cb9a9d3ed2
commit 010f3b2f35
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
* solib.h: Protect against multiple inclusion.
2002-05-06 Jim Blandy <jimb@redhat.com>
Separate the job of reading the line number info statement program

View File

@ -19,6 +19,9 @@
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#ifndef SOLIB_H
#define SOLIB_H
/* Forward decl's for prototypes */
struct target_ops;
@ -197,3 +200,5 @@ extern int in_solib_dynsym_resolve_code (CORE_ADDR); /* solib.c */
/* Discard symbols that were auto-loaded from shared libraries. */
extern void no_shared_libraries (char *ignored, int from_tty);
#endif /* SOLIB_H */