diff options
Diffstat (limited to 'gdb/gdb_vecs.h')
-rw-r--r-- | gdb/gdb_vecs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/gdb_vecs.h b/gdb/gdb_vecs.h index ce32de3..d6de54a 100644 --- a/gdb/gdb_vecs.h +++ b/gdb/gdb_vecs.h @@ -23,6 +23,8 @@ #include "vec.h" +struct probe; + DEF_VEC_P (char_ptr); DEF_VEC_P (const_char_ptr); @@ -39,4 +41,7 @@ extern void dirnames_to_char_ptr_vec_append (VEC (char_ptr) **vecp, extern VEC (char_ptr) *dirnames_to_char_ptr_vec (const char *dirnames); +typedef struct probe *probe_p; +DEF_VEC_P (probe_p); + #endif /* GDB_VECS_H */ |