ocarina/core/history.c

13 lines
171 B
C
Raw Normal View History

/*
* Copyright 2015 (c) Anna Schumaker.
*/
#include <core/history.h>
static struct queue history_queue;
struct queue *history_get_queue()
{
return &history_queue;
}