view src/c/queue.h @ 859:60240acd15b9

Successfully starting FastCGI sessions with Apache
author Adam Chlipala <adamc@hcoop.net>
date Sat, 27 Jun 2009 12:38:23 -0400
parents
children
line wrap: on
line source
#ifndef QUEUE_H
#define QUEUE_H

int uw_dequeue();
void uw_enqueue(int);

#endif