comparison 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
comparison
equal deleted inserted replaced
858:346cf1908a17 859:60240acd15b9
1 #ifndef QUEUE_H
2 #define QUEUE_H
3
4 int uw_dequeue();
5 void uw_enqueue(int);
6
7 #endif