view include/queue.h @ 1430:36c0a1be3f5a

Allow debug and naughtyDebug in client-side code, implemented with alert
author Adam Chlipala <adam@chlipala.net>
date Wed, 02 Mar 2011 18:35:03 -0500
parents 80d048a8efe5
children
line wrap: on
line source
#ifndef QUEUE_H
#define QUEUE_H

int uw_dequeue();
void uw_enqueue(int);

#endif