Don't include gdbarch.h from defs.h
[deliverable/binutils-gdb.git] / gdb / cli / cli-dump.c
index 4dcaa3a46d57a6f971ec39bb12057516fb688e16..143d02ab88d70e35635e69c5dc170db793899fea 100644 (file)
 #include "gdbcore.h"
 #include "cli/cli-utils.h"
 #include "gdb_bfd.h"
-#include "filestuff.h"
-#include "common/byte-vector.h"
+#include "gdbsupport/filestuff.h"
+#include "gdbsupport/byte-vector.h"
+#include "gdbarch.h"
 
 static gdb::unique_xmalloc_ptr<char>
 scan_expression (const char **cmd, const char *def)
 {
   if ((*cmd) == NULL || (**cmd) == '\0')
-    return gdb::unique_xmalloc_ptr<char> (xstrdup (def));
+    return make_unique_xstrdup (def);
   else
     {
       char *exp;
This page took 0.041711 seconds and 4 git commands to generate.