diff options
author | Fred Fish <fnf@specifix.com> | 2003-07-10 21:56:25 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 2003-07-10 21:56:25 +0000 |
commit | 287c324016e4fb51c0e8362f1ee6391e9ba6d08f (patch) | |
tree | a168900e875628739ff0256aa1a1a5e9a0dfaa78 /gdb/solib.h | |
parent | e901de89515172c86d710e23ea506f9365c42a1d (diff) | |
download | gdb-287c324016e4fb51c0e8362f1ee6391e9ba6d08f.zip gdb-287c324016e4fb51c0e8362f1ee6391e9ba6d08f.tar.gz gdb-287c324016e4fb51c0e8362f1ee6391e9ba6d08f.tar.bz2 |
2003-07-10 Fred Fish <fnf@ninemoons.com>
* coff-solib.h (SOLIB_LOADED_LIBRARY_PATHNAME): Default to a
null string instead of a null pointer.
* solib.h (SOLIB_LOADED_LIBRARY_PATHNAME): Ditto.
(Also updated copyrights)
Diffstat (limited to 'gdb/solib.h')
-rw-r--r-- | gdb/solib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/solib.h b/gdb/solib.h index 04be72d..936f037 100644 --- a/gdb/solib.h +++ b/gdb/solib.h @@ -1,5 +1,5 @@ /* Shared library declarations for GDB, the GNU Debugger. - Copyright 1992, 1993, 1995, 1998, 1999, 2000, 2001 + Copyright 1992, 1993, 1995, 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc. This file is part of GDB. @@ -112,7 +112,7 @@ extern void solib_create_inferior_hook (void); /* solib.c */ */ #define SOLIB_LOADED_LIBRARY_PATHNAME(pid) \ -(0) +"" /* This function returns TRUE if the dynamic linker has just reported an unload of a library. |