Merge pull request #695 from schwabe/schwabe/fix_null_queue

Fix building on OS X (missing NULL in queue.h)
This commit is contained in:
Romain Vimont
2019-08-05 15:26:06 +02:00
committed by GitHub

View File

@@ -3,6 +3,7 @@
#define QUEUE_H
#include <stdbool.h>
#include <stddef.h>
#include <SDL2/SDL_assert.h>
// To define a queue type of "struct foo":