diff options
author | obrien <obrien@FreeBSD.org> | 2001-04-14 01:49:32 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-04-14 01:49:32 +0000 |
commit | 58aba6b6c721465578761f00249771e07730ff14 (patch) | |
tree | eb9a41e388b1c2b47307ac60c9b9055db1837980 /contrib/gdb | |
parent | 4cf28ecf05489a0643d696f8448554c41731c3ee (diff) | |
download | FreeBSD-src-58aba6b6c721465578761f00249771e07730ff14.zip FreeBSD-src-58aba6b6c721465578761f00249771e07730ff14.tar.gz |
Remove the filename_completion_function() extern that conflicts with the
latest version of this fuction in Readline 4.2
Diffstat (limited to 'contrib/gdb')
-rw-r--r-- | contrib/gdb/gdb/top.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/gdb/gdb/top.c b/contrib/gdb/gdb/top.c index 35c3287..90eddb5 100644 --- a/contrib/gdb/gdb/top.c +++ b/contrib/gdb/gdb/top.c @@ -18,6 +18,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +/* $FreeBSD$ */ + #include "defs.h" #include "gdbcmd.h" #include "call-cmds.h" @@ -1536,8 +1538,6 @@ filename_completer (text, word) char *text; char *word; { - /* From readline. */ - extern char *filename_completion_function PARAMS ((char *, int)); int subsequent_name; char **return_val; int return_val_used; |