mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-21 19:41:15 +00:00
10 lines
105 B
C++
10 lines
105 B
C++
|
#include <SDL_image.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
AEDI_EXPECT(IMG_Init(0) == 0);
|
||
|
IMG_Quit();
|
||
|
|
||
|
return 0;
|
||
|
}
|