view include/queue.h @ 1148:a48966743c37

AM_INIT_AUTOMAKE with no-define (to fix some NetBSD and OS X problems)
author Adam Chlipala <adamc@hcoop.net>
date Sat, 06 Feb 2010 13:27:05 -0500
parents 80d048a8efe5
children
line wrap: on
line source
#ifndef QUEUE_H
#define QUEUE_H

int uw_dequeue();
void uw_enqueue(int);

#endif