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