summaryrefslogtreecommitdiffstats
path: root/lf_fifo.c
diff options
context:
space:
mode:
Diffstat (limited to 'lf_fifo.c')
-rw-r--r--lf_fifo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lf_fifo.c b/lf_fifo.c
index f13045f..ba71847 100644
--- a/lf_fifo.c
+++ b/lf_fifo.c
@@ -36,7 +36,7 @@ void lf_fifo_init( lf_fifo_t *q ) {
}
/* push a node at the tail of q */
-void lf_fifo_push_tail( lf_fifo_t *q, pointer_t *node ) {
+void lf_fifo_push( lf_fifo_t *q, pointer_t *node ) {
pointer_t tail;
pointer_t last;
pointer_t tmp;
@@ -80,7 +80,7 @@ void lf_fifo_push_tail( lf_fifo_t *q, pointer_t *node ) {
}
/* pop a node from the head of q */
-pointer_t* pop_head( lf_fifo_t *q ) {
+pointer_t* pop( lf_fifo_t *q ) {
pointer_t head;
pointer_t tail;
pointer_t tmp;