aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdb_vecs.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-01-24 21:36:37 +0000
committerTom Tromey <tromey@redhat.com>2012-01-24 21:36:37 +0000
commitfa864999823be896ef9d00d06c67a853f588aa22 (patch)
treef521ced2bb3dfe866843cab35eecf4e06464800e /gdb/gdb_vecs.h
parentf90263c12471deb24d0fb69c09b8039b1d50af16 (diff)
downloadgdb-fa864999823be896ef9d00d06c67a853f588aa22.zip
gdb-fa864999823be896ef9d00d06c67a853f588aa22.tar.gz
gdb-fa864999823be896ef9d00d06c67a853f588aa22.tar.bz2
* ada-lang.c: Include gdb_vecs.h.
* charset.c: Include gdb_vecs.h. * tracepoint.h: Include gdb_vecs.h. * gdb_vecs.h: New file.
Diffstat (limited to 'gdb/gdb_vecs.h')
-rw-r--r--gdb/gdb_vecs.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/gdb/gdb_vecs.h b/gdb/gdb_vecs.h
new file mode 100644
index 0000000..04bd711
--- /dev/null
+++ b/gdb/gdb_vecs.h
@@ -0,0 +1,28 @@
+/* Some commonly-used VEC types.
+
+ Copyright (C) 2012 Free Software Foundation, Inc.
+
+ This file is part of GDB.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+
+#ifndef GDB_VECS_H
+#define GDB_VECS_H
+
+#include "vec.h"
+
+DEF_VEC_P (char_ptr);
+
+#endif /* GDB_VECS_H */