zdoom-macos-deps/test/sdl2_net.cpp

10 lines
108 B
C++
Raw Normal View History

2022-08-21 08:59:05 +00:00
#include <SDL_net.h>
int main()
{
AEDI_EXPECT(SDLNet_Init() == 0);
SDLNet_Quit();
return 0;
}