aboutsummaryrefslogtreecommitdiff
path: root/debugrl.h
diff options
context:
space:
mode:
authorClaudio Matsuoka2001-11-19 00:04:34 +0000
committerClaudio Matsuoka2001-11-19 00:04:34 +0000
commit14d89432bbd4f3af9cc2f4041f20263c88756da3 (patch)
tree93ad8bda22dbbaa0d489401d35f7b9828b5d61cf /debugrl.h
parentb9074d5dd1ae724a6d07ee0ebe66aefe1438f9cb (diff)
downloadscummvm-rg350-14d89432bbd4f3af9cc2f4041f20263c88756da3.tar.gz
scummvm-rg350-14d89432bbd4f3af9cc2f4041f20263c88756da3.tar.bz2
scummvm-rg350-14d89432bbd4f3af9cc2f4041f20263c88756da3.zip
Merged Tom Dunstan's debugger readline patch. Define
HAVE_READLINE to enable it. svn-id: r3500
Diffstat (limited to 'debugrl.h')
-rw-r--r--debugrl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/debugrl.h b/debugrl.h
new file mode 100644
index 0000000000..c309ec96d8
--- /dev/null
+++ b/debugrl.h
@@ -0,0 +1,5 @@
+#include <stdio.h>
+#include <readline/readline.h>
+#include <readline/history.h>
+// initializes readline with our own completer
+void initialize_readline ();