queueing done

This commit is contained in:
Ellen Arvidsson 2025-04-11 23:37:06 +02:00
parent 7a245f05cb
commit 80ee17692a
6 changed files with 32 additions and 37 deletions

View file

@ -24,13 +24,13 @@ struct spho_nom_le {
SLIST_ENTRY(spho_nom_le) next;
};
struct spho_const_le {
struct spho_cnst_le {
struct spho_cnst cnst;
SLIST_ENTRY(spho_const_le) next;
SLIST_ENTRY(spho_cnst_le) next;
};
SLIST_HEAD(spho_nom_l, spho_nom_le);
SLIST_HEAD(spho_const_l, spho_const_le);
SLIST_HEAD(spho_const_l, spho_cnst_le);
#endif