Skip to content

Commit

Permalink
Remove commented and unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
zedr committed Apr 10, 2023
1 parent a75cb58 commit 5441a31
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/queue.c
Original file line number Diff line number Diff line change
@@ -1,19 +1,6 @@
#include "queue.h"
#include <stdlib.h>

extern int foo;
/**
struct game_event_queue *game_queue_alloc(struct game *gm)
{
;
}
void game_queue_free(struct game_event_queue *qu)
{
;
}
**/

static inline bool slot_number_is_valid(int num)
{
return (num >= QUEUE_SLOTS_MAX || num < 0) ? false : true;
Expand Down

0 comments on commit 5441a31

Please sign in to comment.