mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
5533215019
I misread SDL's code and thought that SDL's `begin_code.h` was internal only to SDL. It turns out you get it when you include basically any header, such as `SDL_stdinc.h`. So use it directly instead of copying it for our own.
8 lines
138 B
C
8 lines
138 B
C
#ifndef VVV_EXIT_H
|
|
#define VVV_EXIT_H
|
|
|
|
#include <SDL_stdinc.h>
|
|
|
|
SDL_NORETURN void VVV_exit(const int exit_code);
|
|
|
|
#endif /* VVV_EXIT_H */
|