aboutsummaryrefslogtreecommitdiff
path: root/common.h
diff options
context:
space:
mode:
authorPetr Machata <pmachata@redhat.com>2012-12-17 04:37:57 +0100
committerPetr Machata <pmachata@redhat.com>2013-03-08 22:55:25 +0100
commitebc56a70e20ca0b3fc49c0eb5fc83e56c5e1fa5b (patch)
treec88cfaa4857b798b09376d181f045617d42fe81b /common.h
parentdaefa4a03e16b56e54c6116cec44153aff9dd3b7 (diff)
downloadltrace-ebc56a70e20ca0b3fc49c0eb5fc83e56c5e1fa5b.tar.gz
Introduce a module for managing prototypes and prototype libraries
This is to be used, eventually, for keeping one prototype library per DSO. Right now we only have one prototype library, like before: g_prototypes. Typedef submodule is not yet used, only prototypes are stored in the protolib as of now. The change in Makefile.am is actually an inclusion of prototype.{c,h} followed by a rewrap of name lists.
Diffstat (limited to 'common.h')
-rw-r--r--common.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/common.h b/common.h
index 67ee39b..637f041 100644
--- a/common.h
+++ b/common.h
@@ -43,16 +43,6 @@ extern char * command;
extern int exiting; /* =1 if we have to exit ASAP */
-struct prototype {
- const char *name;
- struct param *params;
- struct arg_type_info *return_info;
- int own_return_info;
- size_t num_params;
- struct prototype *next;
-};
-
-extern struct prototype *list_of_functions;
extern char *PLTs_initialized_by_here;
#include "options.h"