view include/queue.h @ 1131:94e83c5533d2

Handling errors during commit
author Adam Chlipala <adamc@hcoop.net>
date Tue, 26 Jan 2010 14:59:19 -0500
parents 80d048a8efe5
children
line wrap: on
line source
#ifndef QUEUE_H
#define QUEUE_H

int uw_dequeue();
void uw_enqueue(int);

#endif