/* $Id: seq.c,v 1.1 2004/04/03 04:18:38 jmuelmen Exp $ */ #include "scheduler.h" #include "queue.h" static buf_t *_buf = NULL; buf_t *get_sequential () { return _buf; } buf_t *set_sequential (buf_t *b) { return _buf = b; }