aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Machata <pmachata@redhat.com>2013-10-23 00:33:20 +0200
committerPetr Machata <pmachata@redhat.com>2013-10-23 00:33:20 +0200
commit71025328700158770edf84cbce64d977298b6e88 (patch)
tree34fd929079e8dc8c844323de242bf22527a22ea8
parentb0a372b32bbaaf7c0895a81a8f9e1ec686560264 (diff)
downloadltrace-71025328700158770edf84cbce64d977298b6e88.tar.gz
Add struct vect and struct dict to forward.h
-rw-r--r--forward.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/forward.h b/forward.h
index 64993e5..8641213 100644
--- a/forward.h
+++ b/forward.h
@@ -1,6 +1,6 @@
/*
* This file is part of ltrace.
- * Copyright (C) 2012 Petr Machata, Red Hat Inc.
+ * Copyright (C) 2012,2013 Petr Machata, Red Hat Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
@@ -21,17 +21,19 @@
/* Important types defined in other header files are declared
here. */
struct Event;
-struct process;
struct arg_type_info;
struct breakpoint;
+struct dict;
struct expr_node;
+struct filter;
struct library;
struct library_symbol;
struct ltelf;
struct param;
struct param_enum;
+struct process;
struct protolib;
struct prototype;
struct value;
struct value_dict;
-struct filter;
+struct vect;