Properly declare functions in headers; remove redundant declarations.

This commit is contained in:
Markus Armbruster 2004-02-19 12:39:17 +00:00
parent 731fcaf98f
commit d59bc20516
8 changed files with 24 additions and 19 deletions

View file

@ -41,4 +41,9 @@ struct qelem {
struct qelem *q_back;
};
void insque(struct qelem *p, struct qelem *q);
void remque(struct qelem *p);
void initque(struct qelem *p);
struct qelem *makeqt(int nelem);
#endif /* _QUEUE */