* reverse.c: Include cli-utils.h.
[deliverable/binutils-gdb.git] / gdb / cli / cli-dump.c
index 95c1b3422320afae822d2b9fd47580aa4ca8765b..e288ee6860d2f262f7b89f55fe6f34534695cdd9 100644 (file)
 #include "target.h"
 #include "readline/readline.h"
 #include "gdbcore.h"
+#include "cli/cli-utils.h"
 
 #define XMALLOC(TYPE) ((TYPE*) xmalloc (sizeof (TYPE)))
 
 
-char *
-skip_spaces (char *chp)
-{
-  if (chp == NULL)
-    return NULL;
-  while (isspace (*chp))
-    chp++;
-  return chp;
-}
-
 char *
 scan_expression_with_cleanup (char **cmd, const char *def)
 {
This page took 0.022764 seconds and 4 git commands to generate.