aboutsummaryrefslogtreecommitdiff
path: root/src/hyper/item.c
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@axiomatics.org>2016-01-25 02:26:12 -0800
committerGabriel Dos Reis <gdr@axiomatics.org>2016-01-25 02:26:12 -0800
commit82b46badba16f7b40891e7d5e45bb3da828b6203 (patch)
tree0c9ecbd9b5443d7af7e7d2b3db3a5101b88c38cd /src/hyper/item.c
parent0093f04cb53e58151ad3bdfbff328d564ff17caf (diff)
downloadopen-axiom-82b46badba16f7b40891e7d5e45bb3da828b6203.tar.gz
Remove various crufts.
Diffstat (limited to 'src/hyper/item.c')
-rw-r--r--src/hyper/item.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/hyper/item.c b/src/hyper/item.c
index 93cceb82..7bf7d724 100644
--- a/src/hyper/item.c
+++ b/src/hyper/item.c
@@ -46,7 +46,7 @@ ItemStack *gTopOfItemStack = NULL;
void
-push_item_stack(void)
+push_item_stack()
{
ItemStack *is = (ItemStack *) halloc(sizeof(ItemStack), "Item stack");
@@ -58,7 +58,7 @@ push_item_stack(void)
return;
}
void
-clear_item_stack(void)
+clear_item_stack()
{
ItemStack *is = gTopOfItemStack, *chuck;
@@ -70,7 +70,7 @@ clear_item_stack(void)
return;
}
void
-pop_item_stack(void)
+pop_item_stack()
{
ItemStack *chuck;
@@ -87,7 +87,7 @@ pop_item_stack(void)
}
ItemStack *
-copy_item_stack(void)
+copy_item_stack()
{
ItemStack *stack = NULL;
ItemStack *prev = NULL;