summaryrefslogtreecommitdiff
path: root/src/sp_list.h
diff options
context:
space:
mode:
authorjvoisin2017-10-09 11:54:11 +0200
committerGitHub2017-10-09 11:54:11 +0200
commit7234fdbb0cb0dd45ed1d6e7814c91e596126ee25 (patch)
tree1b29ad0e25f37b55390d309fd0b7f4cd406cbb7a /src/sp_list.h
parent50bb0ed72d5c221d40f16690d980db5e7ccee46a (diff)
Implement matching on the calltrace (#17)
* Implement matching on the calltrace
Diffstat (limited to 'src/sp_list.h')
-rw-r--r--src/sp_list.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sp_list.h b/src/sp_list.h
index 48b11f6..476c64c 100644
--- a/src/sp_list.h
+++ b/src/sp_list.h
@@ -11,5 +11,6 @@ typedef struct sp_node_s {
11sp_node_t *sp_new_list(); 11sp_node_t *sp_new_list();
12void sp_list_insert(sp_node_t *, void *); 12void sp_list_insert(sp_node_t *, void *);
13void sp_list_free(sp_node_t *); 13void sp_list_free(sp_node_t *);
14void sp_list_prepend(sp_node_t *, void *);
14 15
15#endif 16#endif