1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-01 18:43:33 +02:00
VVVVVV/desktop_version/src/Exit.h
Misa 5533215019 Use SDL_NORETURN
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.
2021-09-27 10:32:23 -07:00

9 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 */