summaryrefslogtreecommitdiff
path: root/epan/wmem/wmem_stack.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-07-21 21:13:30 +0000
committerEvan Huus <eapache@gmail.com>2013-07-21 21:13:30 +0000
commit037fc022dacea10c13289bc5eb16bf8a52bf984e (patch)
tree1c9208e9f61fc1debb1a6b3609a6aeff2182af99 /epan/wmem/wmem_stack.c
parent9e1b53539ab34e03a85c06d4bbc8047c9f0202d4 (diff)
downloadwireshark-037fc022dacea10c13289bc5eb16bf8a52bf984e.tar.gz
Add wmem queue 'implementation' by wrapping wmem_list and wmem_stack.
Also a bit of misc. refactoring of the stack while I was there, and doc tweaks. svn path=/trunk/; revision=50769
Diffstat (limited to 'epan/wmem/wmem_stack.c')
-rw-r--r--epan/wmem/wmem_stack.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/epan/wmem/wmem_stack.c b/epan/wmem/wmem_stack.c
index cf124a2930..3d04a7f6d4 100644
--- a/epan/wmem/wmem_stack.c
+++ b/epan/wmem/wmem_stack.c
@@ -56,12 +56,6 @@ wmem_stack_pop(wmem_stack_t *stack)
return data;
}
-void
-wmem_stack_push(wmem_stack_t *stack, void *data)
-{
- wmem_list_prepend(stack, data);
-}
-
/*
* Editor modelines - http://www.wireshark.org/tools/modelines.html
*