Merge pull request #695 from schwabe/schwabe/fix_null_queue

Fix building on OS X (missing NULL in queue.h)
issue702
Romain Vimont 5 years ago committed by GitHub
commit 9a50b65b33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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":

Loading…
Cancel
Save