debian/rules: Use `git' potty wrapper.
[qmail] / prioq.h
CommitLineData
2117e02e
MW
1#ifndef PRIOQ_H
2#define PRIOQ_H
3
4#include "datetime.h"
5#include "gen_alloc.h"
6
7struct prioq_elt { datetime_sec dt; unsigned long id; } ;
8
9GEN_ALLOC_typedef(prioq,struct prioq_elt,p,len,a)
10
11extern int prioq_insert();
12extern int prioq_min();
13extern void prioq_delmin();
14
15#endif