Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
@@ -13,8 +13,6 @@ struct Queue {
node *tail;
};
int peek(queue *q) { return q->head->id; }
void insert(queue *q, int id) {
node *new = malloc(sizeof(node));
new->id = id;
The note is not visible to the blocked user.