Properly declare functions in headers; remove redundant declarations.
This commit is contained in:
parent
731fcaf98f
commit
d59bc20516
8 changed files with 24 additions and 19 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue